mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Update.
1998-08-10 15:49 Ulrich Drepper <drepper@cygnus.com> * include/dirent.h: Protect from double inclusion. 1998-08-09 Mark Kettenis <kettenis@phys.uva.nl> * posix/glob.h: Add LFS support for glob and globfree. * posix/Versions [GLIBC_2.1]: Add glob64 and globfree64. * posix/Makefile (routines): Add glob64. * sysdeps/generic/glob64.c: New file. * sysdeps/unix/sysv/linux/glob64.c: New file. * sysdeps/unix/sysv/linux/alpha/glob64.c: New file. * sysdeps/unix/sysv/linux/sparc/sparc64/glob64.c: New file. * sysdeps/generic/glob.c [_LIBC && glob] (__glob_pattern_p): Elide function. * sysdeps/unix/sysv/linux/alpha/glob.c: Add glob64 as a weak alias for __new_glob. Likewise for globfree64. * sysdeps/unix/sysv/linux/sparc/sparc64/glob.c: New file. 1998-08-09 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/Makefile ($(common-objpfx)s-proto.d): Remove -include flag from command.
This commit is contained in:
18
sysdeps/unix/sysv/linux/glob64.c
Normal file
18
sysdeps/unix/sysv/linux/glob64.c
Normal file
@@ -0,0 +1,18 @@
|
||||
#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)
|
||||
|
||||
#include <sysdeps/generic/glob.c>
|
||||
Reference in New Issue
Block a user