diff options
Diffstat (limited to 'src/ctype/isgraph.c')
-rw-r--r-- | src/ctype/isgraph.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c index 292d1983..55fb2d1e 100644 --- a/src/ctype/isgraph.c +++ b/src/ctype/isgraph.c @@ -12,3 +12,11 @@ int __isgraph_l(int c, locale_t l) } weak_alias(__isgraph_l, isgraph_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |