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:
bde 1997-10-15 15:27:19 +00:00
parent d359eb4add
commit 50f061ebcd
5 changed files with 10 additions and 0 deletions

2
lib/libc/string/bzero.c Normal file
View File

@ -0,0 +1,2 @@
#define BZERO
#include "memset.c"

2
lib/libc/string/memcpy.c Normal file
View File

@ -0,0 +1,2 @@
#define MEMCOPY
#include "bcopy.c"

View File

@ -0,0 +1,2 @@
#define MEMMOVE
#include "bcopy.c"

2
lib/libc/string/strchr.c Normal file
View File

@ -0,0 +1,2 @@
#define STRCHR
#include "index.c"

View File

@ -0,0 +1,2 @@
#define STRRCHR
#include "rindex.c"