commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

hurd-l4/libc-parts Makefile.am c-ctype.c c-ctyp...


From: Marcus Brinkmann
Subject: hurd-l4/libc-parts Makefile.am c-ctype.c c-ctyp...
Date: Fri, 19 Sep 2003 13:06:49 -0400

CVSROOT:        /cvsroot/hurd
Module name:    hurd-l4
Branch:         
Changes by:     Marcus Brinkmann <address@hidden>       03/09/19 13:06:49

Modified files:
        libc-parts     : Makefile.am 
Added files:
        libc-parts     : c-ctype.c c-ctype.h ctype.h errno.c errno.h 
                         strtol.c strtoll.c strtoul.c strtoull.c 

Log message:
        2003-09-19  Marcus Brinkmann  <address@hidden>
        
        * ctype.h, errno.h, errno.c: New files.
        * c-ctype.h, c-ctype.c, strtol.c: New files from gnulib.
        * Makefile.am (libc_parts_a_SOURCES): Add ctype.h, c-ctype.h,
        c-ctype.c, errno.h, errno.c, strtol.c, strtoll.c, strtoul.c and
        strtoull.c.
        (routines): Add atoi, atoll, strtoimax and strtoumax.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/c-ctype.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/c-ctype.h?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/ctype.h?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/errno.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/errno.h?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/strtol.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/strtoll.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/strtoul.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/strtoull.c?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/hurd/hurd-l4/libc-parts/Makefile.am.diff?tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: hurd-l4/libc-parts/Makefile.am
diff -u hurd-l4/libc-parts/Makefile.am:1.3 hurd-l4/libc-parts/Makefile.am:1.4
--- hurd-l4/libc-parts/Makefile.am:1.3  Thu Sep 18 19:08:58 2003
+++ hurd-l4/libc-parts/Makefile.am      Fri Sep 19 13:06:48 2003
@@ -20,11 +20,17 @@
 
 noinst_LIBRARIES = libc-parts.a
 
-libc_parts_a_SOURCES = 
+libc_parts_a_SOURCES = ctype.h c-ctype.h c-ctype.c             \
+       errno.h errno.c                                         \
+       strtol.c strtoll.c strtoul.c strtoull.c                 \
 
-routines := memcpy memmove memset bcopy bzero memchr rawmemchr \
-       strstr strtok strchr strchrnul strcpy stpcpy strcat \
-       strcmp strncmp strlen strnlen \
+# For the following routines we want to take the possibly optimized
+# versions from the target's GNU C library, rather than duplicating
+# the generic code here.
+routines := memcpy memmove memset bcopy bzero memchr rawmemchr \
+       strstr strtok strchr strchrnul strcpy stpcpy strcat     \
+       strcmp strncmp strlen strnlen                           \
+       atoi atoll strtoimax strtoumax                          \
        htonl htons ntohl ntohs ffs
 
 # We have to find all modules in the archive which contain the above




reply via email to

[Prev in Thread] Current Thread [Next in Thread]