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

13 lines
144 B
C
Raw Normal View History

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