CoolPotOS/apps/init/init.c

11 lines
111 B
C

#include "../include/stdio.h"
void putc(char c){
}
int main(){
putc('A');
while (1);
return 0;
}