summaryrefslogtreecommitdiff
path: root/src/stdio/putc.c
blob: 3c9dc11eba64f63d10dbcef4a38b0f5d550b55b7 (plain) (blame)
1
2
3
4
5
6
7
8
#include "stdio_impl.h"

int putc(int c, FILE *f)
{
	return fputc(c, f);
}

weak_alias(putc, _IO_putc);