15 lines
181 B
C
15 lines
181 B
C
/*
|
|
* A subroutine version of the macro putchar
|
|
*/
|
|
#define USE_STDIO_MACROS
|
|
#include <stdio.h>
|
|
|
|
#undef putchar
|
|
|
|
int
|
|
putchar(c)
|
|
register int c;
|
|
{
|
|
return putc(c, stdout);
|
|
}
|