Szabolcs Nagy | 5717444 | 2013-12-12 05:09:18 +0000 | [diff] [blame] | 1 | #define _BSD_SOURCE |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 2 | #include <string.h> |
3 | #include <strings.h> | ||||
4 | |||||
5 | void bcopy(const void *s1, void *s2, size_t n) | ||||
6 | { | ||||
7 | memmove(s2, s1, n); | ||||
8 | } |