diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-10-15 15:27:19 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-10-15 15:27:19 +0000 |
commit | e94b7ef033d9752fcb9e547a480060dea5ceef90 (patch) | |
tree | b402bed697158f5a74862320dad9ad7863576657 | |
parent | 61736887074cc7733cd9a13c31610414ed58dbe7 (diff) |
Notes
-rw-r--r-- | lib/libc/string/bzero.c | 2 | ||||
-rw-r--r-- | lib/libc/string/memcpy.c | 2 | ||||
-rw-r--r-- | lib/libc/string/memmove.c | 2 | ||||
-rw-r--r-- | lib/libc/string/strchr.c | 2 | ||||
-rw-r--r-- | lib/libc/string/strrchr.c | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/lib/libc/string/bzero.c b/lib/libc/string/bzero.c new file mode 100644 index 000000000000..7bc2b3a7008a --- /dev/null +++ b/lib/libc/string/bzero.c @@ -0,0 +1,2 @@ +#define BZERO +#include "memset.c" diff --git a/lib/libc/string/memcpy.c b/lib/libc/string/memcpy.c new file mode 100644 index 000000000000..ee1150473aa9 --- /dev/null +++ b/lib/libc/string/memcpy.c @@ -0,0 +1,2 @@ +#define MEMCOPY +#include "bcopy.c" diff --git a/lib/libc/string/memmove.c b/lib/libc/string/memmove.c new file mode 100644 index 000000000000..e9bb2c2ed14c --- /dev/null +++ b/lib/libc/string/memmove.c @@ -0,0 +1,2 @@ +#define MEMMOVE +#include "bcopy.c" diff --git a/lib/libc/string/strchr.c b/lib/libc/string/strchr.c new file mode 100644 index 000000000000..ee33662442d4 --- /dev/null +++ b/lib/libc/string/strchr.c @@ -0,0 +1,2 @@ +#define STRCHR +#include "index.c" diff --git a/lib/libc/string/strrchr.c b/lib/libc/string/strrchr.c new file mode 100644 index 000000000000..8fcf3a19f204 --- /dev/null +++ b/lib/libc/string/strrchr.c @@ -0,0 +1,2 @@ +#define STRRCHR +#include "rindex.c" |