diff options
Diffstat (limited to 'src/stdio/ungetwc.c')
-rw-r--r-- | src/stdio/ungetwc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/ungetwc.c b/src/stdio/ungetwc.c index 9edf366f..08c76bf8 100644 --- a/src/stdio/ungetwc.c +++ b/src/stdio/ungetwc.c @@ -33,3 +33,11 @@ wint_t ungetwc(wint_t c, FILE *f) *ploc = loc; return c; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |