release.sh: restore -jJAILDIR option
[minix.git] / lib / libedit / unix.h
blobe387b2da0b2d11a393f863668955dd86a33732bb
1 /*
2 ** Editline system header file for Unix.
3 */
5 #define CRLF "\r\n"
6 #define FORWARD STATIC
8 #include <sys/types.h>
9 #include <sys/stat.h>
11 #if defined(USE_DIRENT)
12 #include <dirent.h>
13 typedef struct dirent DIRENTRY;
14 #else
15 #include <sys/dir.h>
16 typedef struct direct DIRENTRY;
17 #endif /* defined(USE_DIRENT) */
19 #if !defined(S_ISDIR)
20 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
21 #endif /* !defined(S_ISDIR) */
24 * $PchId: unix.h,v 1.3 1996/02/22 21:18:51 philip Exp $