summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2016-08-16 18:35:51 +0200
committerRichard Braun <rbraun@sceen.net>2016-08-16 18:41:34 +0200
commit05045bd8a898da23ebdad07c4a34e21c433b1b88 (patch)
tree9808571c05e1b3d99a037a9ed39e671cd02ea473 /Makefile.am
parente26f13d83a560684e1aa6b11b1a43f8764eaa032 (diff)
Replace libc string functions with internal implementations
* Makefile.am (clib_routines): Remove memcmp, memcpy, memmove, strchr, strstr and strsep. * kern/strings.c (memset): Comment out. (strchr, strsep, strstr): New functions.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index bbcfc111..50ff6b63 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -161,9 +161,7 @@ noinst_PROGRAMS += \
gnumach.o
# This is the list of routines we decide is OK to steal from the C library.
-clib_routines := memcmp memcpy memmove \
- strchr strstr strsep strtok \
- htonl htons ntohl ntohs \
+clib_routines := htonl htons ntohl ntohs \
udivdi3 __udivdi3 __umoddi3 \
__rel_iplt_start __rel_iplt_end \
__ffsdi2 \