1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00

This is C, not 6502 ;-))

git-svn-id: svn://svn.cc65.org/cc65/trunk@5758 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-07-03 20:00:01 +00:00
parent 22c1376dd1
commit c68d7de66e

View File

@ -73,8 +73,8 @@ struct dirent {
} d_mtime;
};
#define _DE_ISREG(t) ((t) != $0F)
#define _DE_ISDIR(t) ((t) == $0F)
#define _DE_ISREG(t) ((t) != 0x0F)
#define _DE_ISDIR(t) ((t) == 0x0F)
#define _DE_ISLBL(t) (0)
#define _DE_ISLNK(t) (0)