mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
9 lines
190 B
C
9 lines
190 B
C
#include <stdlib.h>
|
|
#include <syscall.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
(void)argc; (void)argv;
|
|
printf("BoredOS v1.64\n");
|
|
printf("BoredOS Kernel V3.0.0\n");
|
|
return 0;
|
|
}
|