diff options
Diffstat (limited to 'src/string/bcmp.c')
-rw-r--r-- | src/string/bcmp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/bcmp.c b/src/string/bcmp.c index 87c6007e..013b1f41 100644 --- a/src/string/bcmp.c +++ b/src/string/bcmp.c @@ -6,3 +6,11 @@ int bcmp(const void *s1, const void *s2, size_t n) { return memcmp(s1, s2, n); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |