diff options
Diffstat (limited to 'src/string/wcstok.c')
-rw-r--r-- | src/string/wcstok.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/wcstok.c b/src/string/wcstok.c index ecc80331..cf25258a 100644 --- a/src/string/wcstok.c +++ b/src/string/wcstok.c @@ -10,3 +10,11 @@ wchar_t *wcstok(wchar_t *restrict s, const wchar_t *restrict sep, wchar_t **rest else *p = 0; return s; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |