Files
retrobsd/src/libc/stdio/putchar.c
2014-04-09 14:27:18 +01:00

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);
}