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

16 lines
172 B
C

/*
* fputc.c - print an unsigned character
*/
/* $Id$ */
#include <stdio.h>
#if ACKCONF_WANT_STDIO
int fputc(int c, FILE* stream)
{
return putc(c, stream);
}
#endif