1 /* 2 * Copyright (C) 2006 Rich Felker <dalias@aerifal.cx> 3 * 4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. 5 */ 6 7 #include <_lfs_64.h> 8 9 #include <dirent.h> 10 #include <glob.h> 11 #include <sys/stat.h> 12 13 #define glob_t glob64_t 14 #define glob(pattern, flags, errfunc, pglob) \ 15 glob64 (pattern, flags, errfunc, pglob) 16 #define globfree(pglob) globfree64 (pglob) 17 18 #define __GLOB64 1 19 20 #include "glob-susv3.c" 21