summaryrefslogtreecommitdiff
path: root/src/stdio/fputc.c
blob: 98d0a20aca814bddf897c8049aff06af9c4cf75e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "stdio_impl.h"

int fputc(int c, FILE *f)
{
	FLOCK(f);
	c = putc_unlocked(c, f);
	FUNLOCK(f);
	return c;
}

weak_alias(fputc, putc);