blob: 228fe30ca80e9060e591089bb04333ce33d08f39 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#ifndef _GLOB_H
2#include <posix/glob.h>
3
4#ifndef _ISOMAC
5libc_hidden_proto (glob)
6libc_hidden_proto (glob64)
7libc_hidden_proto (globfree)
8libc_hidden_proto (globfree64)
9
10/* Now define the internal interfaces. */
11extern int __glob_pattern_p (const char *__pattern, int __quote);
12extern int __glob64 (const char *__pattern, int __flags,
13 int (*__errfunc) (const char *, int),
14 glob64_t *__pglob);
15#endif
16
17#endif