diff options
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | #ifndef _DEFINES_H | 1 | #ifndef _DEFINES_H |
2 | #define _DEFINES_H | 2 | #define _DEFINES_H |
3 | 3 | ||
4 | /* $Id: defines.h,v 1.60 2001/03/19 03:12:26 mouring Exp $ */ | 4 | /* $Id: defines.h,v 1.61 2001/03/20 02:31:45 tim Exp $ */ |
5 | 5 | ||
6 | /* Some platforms need this for the _r() functions */ | 6 | /* Some platforms need this for the _r() functions */ |
7 | #if !defined(_REENTRANT) && !defined(SNI) | 7 | #if !defined(_REENTRANT) && !defined(SNI) |
@@ -108,7 +108,7 @@ enum | |||
108 | #endif /* S_ISREG */ | 108 | #endif /* S_ISREG */ |
109 | 109 | ||
110 | #ifndef S_ISLNK | 110 | #ifndef S_ISLNK |
111 | # define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK)) | 111 | # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) |
112 | #endif /* S_ISLNK */ | 112 | #endif /* S_ISLNK */ |
113 | 113 | ||
114 | #ifndef S_IXUSR | 114 | #ifndef S_IXUSR |