]> git.sur5r.net Git - cc65/blobdiff - include/dirent.h
Add CBM kernal call TKSA to CBM library
[cc65] / include / dirent.h
index d1d7864195fd452ac14ad7976953baa91378abf1..124c7f2241bc6c30d0010b5295823ccc1c9ddadc 100644 (file)
@@ -43,7 +43,7 @@
 
 typedef struct DIR DIR;
 
-#if defined(__APPLE2__) || defined(__APPLE2ENH__)
+#if defined(__APPLE2__)
 
 struct dirent {
     char          d_name[16];
@@ -78,7 +78,7 @@ struct dirent {
 #define _DE_ISLBL(t)  (0)
 #define _DE_ISLNK(t)  (0)
 
-#elif defined(__ATARI__) || defined(__ATARIXL__)
+#elif defined(__ATARI__)
 
 struct dirent {
     char          d_name[13];  /* 8.3 + trailing 0 */
@@ -107,7 +107,7 @@ struct dirent {
 
 #define _DE_ISREG(t)    (((t) & _CBM_T_REG) != 0)
 #define _DE_ISDIR(t)    ((t) == _CBM_T_DIR)
-#define _DE_ISLBL(t)    ((t) == _CBM_T_HDR)
+#define _DE_ISLBL(t)    ((t) == _CBM_T_HEADER)
 #define _DE_ISLNK(t)    ((t) == _CBM_T_LNK)
 
 #elif defined(__LYNX__)