aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/fputc.c
blob: 9f8aac5dadd63288576a6630b4ae58833fcd493a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "putc.h"

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif