Use macro actually defined in cbm_filetype.h.

This commit is contained in:
Oliver Schmidt 2017-11-06 21:02:14 +01:00
parent 59fed23824
commit afcfba9355
1 changed files with 1 additions and 1 deletions

View File

@ -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__)