Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / fputc.c
1 /*
2  * fputc.c - print an unsigned character
3  */
4 /* $Id: fputc.c,v 1.2 1994/06/24 11:49:39 ceriel Exp $ */
5
6 #include        <stdio.h>
7
8 int
9 fputc(int c, FILE *stream)
10 {
11         return putc(c, stream);
12 }