mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
6173688707
commit
e94b7ef033
5 changed files with 10 additions and 0 deletions
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…
Reference in a new issue