ack/lang/cem/libcc.ansi/sys/stdio/putchar.c
2018-06-23 18:54:40 +02:00

16 lines
190 B
C

/*
* putchar.c - print (or buffer) a character on the standard output stream
*/
/* $Id$ */
#include <stdio.h>
#if ACKCONF_WANT_STDIO
int(putchar)(int c)
{
return putchar(c);
}
#endif