home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-base.tgz / libg++-2.7.1-src.tar / fsf / libg++ / libio / stdio / fputc.c < prev    next >
C/C++ Source or Header  |  1994-08-12  |  137b  |  12 lines

  1. #include "libioP.h"
  2. #include "stdio.h"
  3.  
  4. int
  5. fputc(c, fp)
  6.      int c;
  7.      FILE *fp;
  8. {
  9.   CHECK_FILE(fp, EOF);
  10.   return _IO_putc(c, fp);
  11. }
  12.