This commit is contained in:
nora 2023-09-30 18:54:43 +02:00
parent ae189e8b18
commit 043c960708
15 changed files with 206 additions and 23 deletions

View file

@ -1,6 +1,8 @@
#include<stdio.h>
#include<sys/mman.h>
int main(int argc, char *argv[]) {
PROT_WRITE;
puts("Hello, world!");
int result = printf("Hello, world!\n");
if (result != 15) {
return 1;
}
}