musl-tcc/src/stdio/putc_unlocked.c

10 lines
184 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include "stdio_impl.h"
int (putc_unlocked)(int c, FILE *f)
{
return putc_unlocked(c, f);
}
weak_alias(putc_unlocked, fputc_unlocked);
weak_alias(putc_unlocked, _IO_putc_unlocked);