diff options
Diffstat (limited to 'src/regex/glob.c')
-rw-r--r-- | src/regex/glob.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/regex/glob.c b/src/regex/glob.c index 85671985..746da77d 100644 --- a/src/regex/glob.c +++ b/src/regex/glob.c @@ -7,7 +7,6 @@ #include <stdlib.h> #include <errno.h> #include <stddef.h> -#include "libc.h" struct match { @@ -240,5 +239,5 @@ void globfree(glob_t *g) g->gl_pathv = NULL; } -LFS64(glob); -LFS64(globfree); +weak_alias(glob, glob64); +weak_alias(globfree, globfree64); |