mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
18 lines
191 B
C
18 lines
191 B
C
# include "iodec.h"
|
|
|
|
/**
|
|
** put a single character
|
|
**/
|
|
|
|
int f_log 0;
|
|
|
|
cputc(c, fn)
|
|
char c;
|
|
int fn;
|
|
{
|
|
/*if (fn == 2) /* Standard Error */
|
|
/* write(fn, &c, 1);*/
|
|
/*else*/
|
|
putchar(c);
|
|
}
|