ack/lang/cem/libcc.ansi/stdio/putc.c

15 lines
160 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* putc.c - print (or buffer) one character
*/
/* $Header$ */
#include <stdio.h>
#undef putc
int
putc(int c, FILE *stream)
{
return fputc(c, stream);
}