diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-22 02:19:33 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-22 02:19:33 +0000 |
commit | 1b33bc8fff7297da887815f4d4fb6f8c8c2ee947 (patch) | |
tree | 41d8c0fb36c01a1b8f920645239dade72c0172dc /libc/misc/glob/glob64.c | |
parent | 92aa0ba401b0f8c37a27e49472588b13c01850d4 (diff) | |
download | uClibc-alpine-1b33bc8fff7297da887815f4d4fb6f8c8c2ee947.tar.bz2 uClibc-alpine-1b33bc8fff7297da887815f4d4fb6f8c8c2ee947.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/misc/glob/glob64.c')
-rw-r--r-- | libc/misc/glob/glob64.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libc/misc/glob/glob64.c b/libc/misc/glob/glob64.c index d84f874d5..b84af92b3 100644 --- a/libc/misc/glob/glob64.c +++ b/libc/misc/glob/glob64.c @@ -10,17 +10,6 @@ #include <glob.h> #include <sys/stat.h> -#define dirent dirent64 +#define COMPILE_GLOB64 1 -#define glob_t glob64_t -#define glob(pattern, flags, errfunc, pglob) \ - glob64 (pattern, flags, errfunc, pglob) -#define globfree(pglob) globfree64 (pglob) - -#undef stat -#define stat stat64 -#define lstat lstat64 - -#define __GLOB64 1 - #include "glob.c" |