1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@410 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-10-30 19:52:30 +00:00
parent 99c9f4fe4e
commit 3fde2841f1

View File

@ -76,7 +76,7 @@
#define EXP_INIT 0x04 /* Mask bit for initializer export */
#define EXP_MASK_INIT 0x04 /* Value mask */
#define IS_EXP_INIT (((x) & EXP_MASK_INIT) == EXP_INIT)
#define IS_EXP_INIT(x) (((x) & EXP_MASK_INIT) == EXP_INIT)