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