diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-02-26 19:26:30 +0100 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-03 18:22:49 +0100 |
commit | de71e42c04a7d35cf663b1c84ac1de5b6b93b052 (patch) | |
tree | 5ab59479b804ab817a467d64e64b4db9b82e2445 /include/ftw.h | |
parent | 099b65127dd434846ca75d5fb11c2db303ed77a6 (diff) |
syntax fixes
Avoid compile warnings about the use of undefined constants
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'include/ftw.h')
-rw-r--r-- | include/ftw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ftw.h b/include/ftw.h index 84f3e14a8..c79924dc8 100644 --- a/include/ftw.h +++ b/include/ftw.h @@ -129,7 +129,7 @@ typedef int (*__nftw64_func_t) (__const char *__filename, # endif #endif -#if __UCLIBC_HAS_FTW__ +#ifdef __UCLIBC_HAS_FTW__ /* Call a function on every element in a directory tree. This function is a possible cancellation point and therefore not @@ -151,7 +151,7 @@ extern int ftw64 (__const char *__dir, __ftw64_func_t __func, # endif #endif -#if __UCLIBC_HAS_NFTW__ && defined __USE_XOPEN_EXTENDED +#if defined __UCLIBC_HAS_NFTW__ && defined __USE_XOPEN_EXTENDED /* Call a function on every element in a directory tree. FLAG allows to specify the behaviour more detailed. |