7 lines
122 B
C
7 lines
122 B
C
#include <syscall.h>
|
|
|
|
int main() {
|
|
const char* msg = "hi from C userland\r\n";
|
|
write(1, msg, 21);
|
|
return 42;
|
|
} |