CoolPotOS/apps/init/init.c

11 lines
111 B
C
Raw Normal View History

2024-07-14 00:54:27 +08:00
#include "../include/stdio.h"
2024-07-30 22:50:03 +08:00
void putc(char c){
}
2024-07-14 00:54:27 +08:00
int main(){
2024-07-30 22:50:03 +08:00
putc('A');
2024-07-14 00:54:27 +08:00
while (1);
return 0;
}