home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
libg++-2.6.2.lha
/
libg++-2.6.2
/
libio
/
stdio
/
fputc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-12
|
137b
|
12 lines
#include "libioP.h"
#include "stdio.h"
int
fputc(c, fp)
int c;
FILE *fp;
{
CHECK_FILE(fp, EOF);
return _IO_putc(c, fp);
}