summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fputc_unlocked.c
blob: 966721e727c65178fd4e2aa15fc29d94bb543fb9 (plain)
1
2
3
4
5
6
#include <stdio.h>

int fputc_unlocked(int c, FILE *stream)
{
	return fwrite_unlocked(&c, 1, 1, stream) ? c : EOF;
}