|
|
coherent
/*
* Standard I/O Library
* putchar function for those too lazy to include stdio.h
*/
#include <stdio.h>
#undef putchar
int
putchar(c)
unsigned char c;
{
return (putc(c, stdout));
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.