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:
Bruce Evans 1997-10-15 15:27:19 +00:00
parent 6173688707
commit e94b7ef033
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"