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
/
putc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-26
|
138b
|
13 lines
#include "libioP.h"
#include "stdio.h"
#undef putc
int
putc(c, stream)
int c;
FILE *stream;
{
return _IO_putc(c, stream);
}