Define glob64

This commit is contained in:
Justine Tunney 2024-10-12 15:26:10 -07:00
parent 706cb66310
commit 5edc0819c0
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -30,5 +30,11 @@ typedef struct {
int glob(const char *, int, int (*)(const char *, int), glob_t *);
void globfree(glob_t *);
#ifdef _LARGEFILE64_SOURCE
#define glob64 glob
#define globfree64 globfree
#define glob64_t glob_t
#endif
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_THIRD_PARTY_MUSL_GLOB_H_ */