]> git.saurik.com Git - apple/libc.git/blobdiff - include/ftw.h
Libc-594.9.5.tar.gz
[apple/libc.git] / include / ftw.h
index 1601ad2bae333dc19e28f63c45a186ddb88c414b..f1c6db8c8ff4e750a0e4a46e267c4b46bf7b22f5 100644 (file)
@@ -23,7 +23,6 @@
 #ifndef        _FTW_H
 #define        _FTW_H
 
-#include <sys/types.h>
 #include <sys/stat.h>
 
 /*
@@ -52,9 +51,28 @@ struct FTW {
 };
 
 __BEGIN_DECLS
-int    ftw(const char *, int (*)(const char *, const struct stat *, int), int);
+//Begin-Libc
+#ifndef LIBC_ALIAS_FTW
+//End-Libc
+int    ftw(const char *, int (*)(const char *, const struct stat *, int), int) 
+       __DARWIN_ALIAS_I(ftw);
+//Begin-Libc
+#else /* LIBC_ALIAS_FTW */
+int    ftw(const char *, int (*)(const char *, const struct stat *, int), int) 
+       LIBC_ALIAS_I(ftw);
+#endif /* !LIBC_ALIAS_FTW */
+//End-Libc
+//Begin-Libc
+#ifndef LIBC_ALIAS_NFTW
+//End-Libc
 int    nftw(const char *, int (*)(const char *, const struct stat *, int,
-           struct FTW *), int, int);
+           struct FTW *), int, int) __DARWIN_ALIAS_I(nftw);
+//Begin-Libc
+#else /* LIBC_ALIAS_NFTW */
+int    nftw(const char *, int (*)(const char *, const struct stat *, int,
+           struct FTW *), int, int) LIBC_ALIAS_I(nftw);
+#endif /* !LIBC_ALIAS_NFTW */
+//End-Libc
 __END_DECLS
 
 #endif /* !_FTW_H */