mirror of
https://github.com/ioacademy-jikim/android_framwork
synced 2025-06-08 16:36:24 +00:00
14 lines
211 B
C
14 lines
211 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
int main()
|
|
{
|
|
int fd = open("__kmsg__", O_RDWR);
|
|
write(fd, "hello world\n", 12);
|
|
close(fd);
|
|
return 0;
|
|
}
|