Added some 2-line source files to get a direct correspondence
between sources and objects. This will be used to avoid messy special cases in Makefile.inc.
This commit is contained in:
parent
d359eb4add
commit
50f061ebcd
2
lib/libc/string/bzero.c
Normal file
2
lib/libc/string/bzero.c
Normal file
@ -0,0 +1,2 @@
|
||||
#define BZERO
|
||||
#include "memset.c"
|
2
lib/libc/string/memcpy.c
Normal file
2
lib/libc/string/memcpy.c
Normal file
@ -0,0 +1,2 @@
|
||||
#define MEMCOPY
|
||||
#include "bcopy.c"
|
2
lib/libc/string/memmove.c
Normal file
2
lib/libc/string/memmove.c
Normal file
@ -0,0 +1,2 @@
|
||||
#define MEMMOVE
|
||||
#include "bcopy.c"
|
2
lib/libc/string/strchr.c
Normal file
2
lib/libc/string/strchr.c
Normal file
@ -0,0 +1,2 @@
|
||||
#define STRCHR
|
||||
#include "index.c"
|
2
lib/libc/string/strrchr.c
Normal file
2
lib/libc/string/strrchr.c
Normal file
@ -0,0 +1,2 @@
|
||||
#define STRRCHR
|
||||
#include "rindex.c"
|
Loading…
x
Reference in New Issue
Block a user