minix/lib/stdio/fputc.c

13 lines
144 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* fputc.c - print an unsigned character
*/
/* $Header$ */
#include <stdio.h>
int
fputc(int c, FILE *stream)
{
return putc(c, stream);
}