diff options
Diffstat (limited to 'src/string/bcopy.c')
-rw-r--r-- | src/string/bcopy.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/string/bcopy.c b/src/string/bcopy.c new file mode 100644 index 00000000..e76272fc --- /dev/null +++ b/src/string/bcopy.c @@ -0,0 +1,7 @@ +#include <string.h> +#include <strings.h> + +void bcopy(const void *s1, void *s2, size_t n) +{ + memmove(s2, s1, n); +} |