diff options
Diffstat (limited to 'src/ctype/toascii.c')
-rw-r--r-- | src/ctype/toascii.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/toascii.c b/src/ctype/toascii.c index f0e48e8e..b322a909 100644 --- a/src/ctype/toascii.c +++ b/src/ctype/toascii.c @@ -5,3 +5,11 @@ int toascii(int c) { return c & 0x7f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |