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