10 lines
113 B
C
Raw Permalink Normal View History

2025-05-10 21:49:39 +08:00
#include <stdio.h>
int syscall_enter(openat)(void *args)
{
puts("Hello, world\n");
return 0;
}
license(GPL);