1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed a problem with the Watcom compiler

git-svn-id: svn://svn.cc65.org/cc65/trunk@580 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-12-10 10:36:44 +00:00
parent fb9da60180
commit 99052e546d

View File

@ -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;