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