summaryrefslogtreecommitdiff
path: root/libc/misc/glob/glob.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-16 15:09:24 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-16 15:09:24 +0000
commit78c62942f560d0a82ea83e1b65677ad20f890671 (patch)
tree7095f1572bcd97afcc3525dc039fa1436c0a47f5 /libc/misc/glob/glob.c
parent255fb838c8d0ad983aec17c6fd6fd779589d19eb (diff)
Hope it solves JBG's problem, why didn't it bail out here?
Diffstat (limited to 'libc/misc/glob/glob.c')
-rw-r--r--libc/misc/glob/glob.c4
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. */