summaryrefslogtreecommitdiffstats
path: root/usr/klibc/putchar.c
blob: e2224ca88f8ae3b8d61a97d9bd50459887a13c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * putchar.c
 *
 * - gcc wants this
 */

#include <stdio.h>

#undef putchar			/* Defined as a macro */
int putchar(int);

int putchar(int c)
{
	return fputc(c, stdout);
}