home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0483.ZIP / CCE_0483.PD / LZH_SOUR.CE / GOODPUTC.H < prev    next >
Text File  |  1992-04-01  |  130b  |  10 lines

  1.  
  2. int file_putc(char c, FILE *f)
  3.  {
  4.    putc(c,f);
  5.    if (ferror(f)) return EOF;
  6.    return 0;
  7.  }
  8. #define putc file_putc
  9.  
  10.