summaryrefslogtreecommitdiff
path: root/libc/string/__xpg_basename.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/__xpg_basename.c')
-rw-r--r--libc/string/__xpg_basename.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/string/__xpg_basename.c b/libc/string/__xpg_basename.c
index 2449d1d42..2e7ade913 100644
--- a/libc/string/__xpg_basename.c
+++ b/libc/string/__xpg_basename.c
@@ -5,7 +5,6 @@
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
-#include "_string.h"
#include <libgen.h>
char *__xpg_basename(register char *path)
@@ -34,3 +33,7 @@ char *__xpg_basename(register char *path)
return first;
}
+#ifndef __USE_GNU
+# undef basename
+weak_alias(__xpg_basename,basename)
+#endif