separate getc/putc from fgetc/fputc
[musl] / src / stdio / fgetc.c
index 65a10fa..e122416 100644 (file)
@@ -9,6 +9,3 @@ int fgetc(FILE *f)
        __unlockfile(f);
        return c;
 }
-
-weak_alias(fgetc, getc);
-weak_alias(fgetc, _IO_getc);