/* $OpenBSD: promcons.c,v 1.2 2001/07/04 08:33:51 niklas Exp $ */ #include #include #include int getchar() { return ( (*romp->getChar)() ); } int peekchar() { return ( (*romp->mayGet)() ); } void putchar(c) int c; { if (c == '\n') (*romp->putChar)('\r'); (*romp->putChar)(c); }