scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit d67bece3068f58790f65eac4aea562746655c76b
parent 3f873d8bfd3f33a50725ae81b71fc8d1fb1f7a61
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 11 Jan 2025 13:16:34 +0100

libc: Remove strchr(), strcmp() and strcpy() from common

These functions can be provided as architectural dependent
functions, and it happened that amd64 had a c and an assembler
version.

For sure that some architectures are going to be broken after this
commit because they expect the C version, but that would raise soon
so it is not a big issue now.

Diffstat:
Msrc/libc/objs/common-objs.mk | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/libc/objs/common-objs.mk b/src/libc/objs/common-objs.mk @@ -98,10 +98,7 @@ COMMON_OBJS =\ stdlib/wcstombs.$O\ stdlib/wctomb.$O\ string/strcat.$O\ - string/strchr.$O\ - string/strcmp.$O\ string/strcoll.$O\ - string/strcpy.$O\ string/strcspn.$O\ string/strerror.$O\ string/strncat.$O\