| 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 | int bcmp(const void *s1, const void *s2, size_t n) | ||||
| 6 | { | ||||
| 7 | return memcmp(s1, s2, n); | ||||
| 8 | } | ||||