diff options
Diffstat (limited to 'src/string/strstr.c')
-rw-r--r-- | src/string/strstr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/strstr.c b/src/string/strstr.c index 96657bc2..53e6d46a 100644 --- a/src/string/strstr.c +++ b/src/string/strstr.c @@ -152,3 +152,11 @@ char *strstr(const char *h, const char *n) return twoway_strstr((void *)h, (void *)n); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |