NachOS/code/test/getchar.c
2021-10-15 02:04:42 +02:00

9 lines
137 B
C

#include "syscall.h"
int main(){
do {
char c = GetChar();
PutChar(c);
PutChar('\n');
} while(1 == 1);
}