home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / macutils.lzh / MACUTILS / MACUNPACK / fputc.c < prev    next >
Text File  |  1996-02-02  |  200b  |  13 lines

  1. /* For some reason make, wouldn't allow my #define so here we are */
  2. /*  OSK - Dean Leiber */
  3.  
  4. #ifdef OSK
  5. #include "globals.h"
  6. fputc(var,path)
  7. char var;
  8. FILE *path;
  9. {
  10. fprintf(path,"%c",var);
  11. }
  12. #endif
  13.