From: cuz Date: Sun, 10 Dec 2000 10:36:44 +0000 (+0000) Subject: Fixed a problem with the Watcom compiler X-Git-Tag: V2.12.0~2964 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=99052e546d55486c59fa7e8c1b69602a863e19cc;p=cc65 Fixed a problem with the Watcom compiler git-svn-id: svn://svn.cc65.org/cc65/trunk@580 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/da65/attrtab.h b/src/da65/attrtab.h index 2bcae016d..94898d62d 100644 --- a/src/da65/attrtab.h +++ b/src/da65/attrtab.h @@ -44,8 +44,7 @@ -typedef enum attr_t attr_t; -enum attr_t { +typedef enum attr_t { /* Styles */ atDefault = 0x00, /* Default style */ @@ -65,7 +64,7 @@ enum attr_t { atStyleMask = 0x0F, /* Output style */ atLabelMask = 0x30 /* Label information */ -}; +} attr_t;