summaryrefslogtreecommitdiff
path: root/src/stdio/putc_unlocked.c
blob: 77068408af8f9d143e57f2c47b00062e12f91ff2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int putc_unlocked(int c, FILE * stream)
{
	return 0;
}

/*
POSIX(199506)
*/