Files
xv6-custom-os/hello.c
2022-12-06 11:49:47 +00:00

7 lines
102 B
C

#include "types.h"
#include "user.h"
int main(int argc, char *argv[]) {
greeting();
exit();
}