glob64-susv3.c 427 B

1234567891011121314151617181920
  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. #include <_lfs_64.h>
  7. #include <dirent.h>
  8. #include <glob.h>
  9. #include <sys/stat.h>
  10. #define glob_t glob64_t
  11. #define glob(pattern, flags, errfunc, pglob) \
  12. glob64 (pattern, flags, errfunc, pglob)
  13. #define globfree(pglob) globfree64 (pglob)
  14. #define __GLOB64 1
  15. #include "glob-susv3.c"