diff options
Diffstat (limited to 'src/stdio/getc_unlocked.c')
-rw-r--r-- | src/stdio/getc_unlocked.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/getc_unlocked.c b/src/stdio/getc_unlocked.c index b38dad16..e3c8f4c7 100644 --- a/src/stdio/getc_unlocked.c +++ b/src/stdio/getc_unlocked.c @@ -7,3 +7,11 @@ int (getc_unlocked)(FILE *f) weak_alias (getc_unlocked, fgetc_unlocked); weak_alias (getc_unlocked, _IO_getc_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |