diff options
Diffstat (limited to 'src/string/bzero.c')
-rw-r--r-- | src/string/bzero.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/bzero.c b/src/string/bzero.c index ba536b07..fbc0eb1b 100644 --- a/src/string/bzero.c +++ b/src/string/bzero.c @@ -6,3 +6,11 @@ void bzero(void *s, size_t n) { memset(s, 0, n); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |