|
|
1.1 ! root 1: /* ! 2: * Standard I/O Library ! 3: * putc function for those too lazy or cheap to use macro ! 4: */ ! 5: ! 6: #include <stdio.h> ! 7: #undef putc ! 8: ! 9: int ! 10: putc(c, fp) ! 11: char c; ! 12: FILE *fp; ! 13: { ! 14: return (fputc(c, fp)); ! 15: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.