diff options
Diffstat (limited to 'lib/libc/string')
-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 0000000..7bc2b3a --- /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 0000000..ee11504 --- /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 0000000..e9bb2c2 --- /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 0000000..ee33662 --- /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 0000000..8fcf3a1 --- /dev/null +++ b/lib/libc/string/strrchr.c @@ -0,0 +1,2 @@ +#define STRRCHR +#include "rindex.c" |