CoolPotOS/apps/init/init.c

11 lines
120 B
C

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