mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
1f539fd1dc
1998-08-12 17:03 Ulrich Drepper <drepper@cygnus.com> * include/unistd.h: Protect against multiple inclusion. * posix/glob.c: Don't define __glob_pattern_p is NO_GLOB_PATTERN_P is defined, not is glob is defined. * sysdeps/unix/sysv/linux/glob64.c: Define NO_GLOB_PATTERN_P. 1998-08-01 17:18 H.J. Lu <hjl@gnu.org> * sunrpc/rpcsvc/rusers.x (xdr_utmp): Use xdr_bytes instead of xdr_string for ut_line, ut_name and ut_host. 1998-08-12 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sysdeps/unix/sysv/linux/paths.h (_PATH_MAILDIR): Change to /var/mail in accordance with FHS 2.0. Reported by Javier Kohen <root@jkohen.tough.com.ar> [PR libc/639]. 1998-08-12 Richard Henderson <rth@cygnus.com> * sysdeps/unix/sysv/linux/alpha/syscalls.list (recvmsg, sendmsg): Update aliases for cancelation. * sysdeps/unix/sysv/linux/alpha/glob.c: Undef glob*64 before playing with symbol versions. (_hurd_canonicalize_directory_name_internal): Do not loop forever for unknown root directories. be reached.
21 lines
441 B
C
21 lines
441 B
C
#include <dirent.h>
|
|
#include <glob.h>
|
|
#include <sys/stat.h>
|
|
|
|
#define dirent dirent64
|
|
#define __readdir(dirp) __readdir64 (dirp)
|
|
|
|
#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
|
|
#undef __stat
|
|
#define __stat(file, buf) stat64 (file, buf)
|
|
|
|
#define NO_GLOB_PATTERN_P 1
|
|
|
|
#include <sysdeps/generic/glob.c>
|