diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 15:09:24 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 15:09:24 +0000 |
commit | 78c62942f560d0a82ea83e1b65677ad20f890671 (patch) | |
tree | 7095f1572bcd97afcc3525dc039fa1436c0a47f5 /libc/misc | |
parent | 255fb838c8d0ad983aec17c6fd6fd779589d19eb (diff) |
Hope it solves JBG's problem, why didn't it bail out here?
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/glob/glob.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/misc/glob/glob.c b/libc/misc/glob/glob.c index 6c1e0351b..ea87d371c 100644 --- a/libc/misc/glob/glob.c +++ b/libc/misc/glob/glob.c @@ -324,7 +324,11 @@ __globfree (pglob) free ((__ptr_t) pglob->gl_pathv); } } +#ifdef __GLOB64 +strong_alias(__globfree64,globfree64) +#else strong_alias(__globfree,globfree) +#endif /* Do a collated comparison of A and B. */ |