summaryrefslogtreecommitdiff
path: root/libc/string/string.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-03-19 21:33:48 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-03-19 21:33:48 +0000
commitfb1124fe102109fe336937a78b0072f4e6a206c0 (patch)
tree402498d94a8086c2b72794016ac59ca9d6a2b499 /libc/string/string.c
parentbb84a07a88222a21afddbf16c31d9d8b15fdda7c (diff)
Put weak symbols where they can find what they are aliasing. Clean up strcspn.c
Diffstat (limited to 'libc/string/string.c')
-rw-r--r--libc/string/string.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libc/string/string.c b/libc/string/string.c
index 0a38b346f..b3070907c 100644
--- a/libc/string/string.c
+++ b/libc/string/string.c
@@ -75,11 +75,9 @@ int strcmp(const char *s1, const char *s2)
return c1 - c2;
}
-#endif
-#ifdef L_strcoll
__asm__(".weak strcoll; strcoll = strcmp");
-#endif
+#endif
/********************** Function strncat ************************************/
@@ -161,9 +159,7 @@ char *strchr(const char *str, int c)
return 0;
}
-#endif
-#ifdef L_index
__asm__(".weak index; index = strchr");
#endif
@@ -186,9 +182,7 @@ char *strrchr(const char *str, int c)
}
return prev;
}
-#endif
-#ifdef L_rindex
__asm__(".weak rindex; rindex = strrchr");
#endif