diff options
Diffstat (limited to 'printf.c')
-rw-r--r-- | printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ | |||
59 | 59 | ||
60 | 60 | ||
61 | #ifndef S_IFMT | 61 | #ifndef S_IFMT |
62 | # define S_IFMT 0170000 | 62 | static const int S_IFMT = 0170000; |
63 | #endif | 63 | #endif |
64 | #if !defined(S_ISBLK) && defined(S_IFBLK) | 64 | #if !defined(S_ISBLK) && defined(S_IFBLK) |
65 | # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) | 65 | # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) |