#include #include #include #include #include int main() { int fd = open("__kmsg__", O_RDWR); write(fd, "hello world\n", 12); close(fd); return 0; }