diff options
Diffstat (limited to 'src/ctype/ispunct.c')
-rw-r--r-- | src/ctype/ispunct.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c index a491d5dc..e512657f 100644 --- a/src/ctype/ispunct.c +++ b/src/ctype/ispunct.c @@ -11,3 +11,11 @@ int __ispunct_l(int c, locale_t l) } weak_alias(__ispunct_l, ispunct_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |