separate getc/putc from fgetc/fputc
[musl] / src / stdio / fputc.c
index 9953296..92762c9 100644 (file)
@@ -8,6 +8,3 @@ int fputc(int c, FILE *f)
        __unlockfile(f);
        return c;
 }
-
-weak_alias(fputc, putc);
-weak_alias(fputc, _IO_putc);