OSDN Git Service

Put weak symbols where they can find what they are aliasing. Clean up strcspn.c
authorManuel Novoa III <mjn3@codepoet.org>
Mon, 19 Mar 2001 21:33:48 +0000 (21:33 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Mon, 19 Mar 2001 21:33:48 +0000 (21:33 -0000)
libc/string/Makefile
libc/string/strcspn.c
libc/string/string.c

index 4421dee..4d0a95d 100644 (file)
@@ -27,8 +27,7 @@ LIBC=$(TOPDIR)libc.a
 MSRC=string.c
 MOBJ=strlen.o strcat.o strcpy.o strchr.o strcmp.o strncat.o strncpy.o \
        strncmp.o strrchr.o strdup.o memcpy.o memccpy.o memset.o \
-       memmove.o memcmp.o memchr.o ffs.o strnlen.o index.o rindex.o \
-       strxfrm.o strcoll.o
+       memmove.o memcmp.o memchr.o ffs.o strnlen.o strxfrm.o
 
 MSRC1=strsignal.c
 MOBJ1=strsignal.o psignal.o
index d30195d..b383b55 100644 (file)
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#if defined _LIBC || HAVE_STRING_H
-# include <string.h>
-#else
-# include <strings.h>
-# ifndef strchr
-#  define strchr index
-# endif
-#endif
-
-#undef strcspn
+#include <string.h>
 
 /* Return the length of the maximum initial segment of S
    which contains no characters from REJECT.  */
index 0a38b34..b307090 100644 (file)
@@ -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