diff options
Diffstat (limited to 'src/ctype/isdigit.c')
-rw-r--r-- | src/ctype/isdigit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index 16beddb4..2983d726 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -12,3 +12,11 @@ int __isdigit_l(int c, locale_t l) } weak_alias(__isdigit_l, isdigit_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |