summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/oldglob.c
blob: a034c2d930751c261da81b462b736e4d667dda42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <shlib-compat.h>

#if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) \
    && !defined(GLOB_NO_OLD_VERSION)

#include <dirent.h>
#include <glob.h>
#include <sys/stat.h>

#include <olddirent.h>

int __old_glob64 (const char *__pattern, int __flags,
		  int (*__errfunc) (const char *, int),
		  glob64_t *__pglob);
libc_hidden_proto (__old_glob64);

#define dirent __old_dirent64
#define GL_READDIR(pglob, stream) \
  ((struct __old_dirent64 *) (pglob)->gl_readdir (stream))
#undef __readdir
#define __readdir(dirp) __old_readdir64 (dirp)

#define glob_t glob64_t
#define __glob(pattern, flags, errfunc, pglob) \
  __old_glob64 (pattern, flags, errfunc, pglob)
#define globfree(pglob) globfree64(pglob)

#define convert_dirent __old_convert_dirent
#define glob_in_dir __old_glob_in_dir

#undef stat
#define stat stat64
#undef __stat
#define __stat(file, buf) __xstat64 (_STAT_VER, file, buf)

/* Avoid calling gl_lstat with GLOB_ALTDIRFUNC.  */
#define GLOB_NO_LSTAT

#define GLOB_ATTRIBUTE attribute_compat_text_section

#include <posix/glob.c>

libc_hidden_def (__old_glob64);

compat_symbol (libc, __old_glob64, glob64, GLIBC_2_1);
#endif