Last active 5 days ago
0
0
1
| 1 | #include <unistd.h> |
| 2 | #include <fcntl.h> |
| 3 | |
| 4 | int main(void) { |
| 5 | int fd = open("meow.txt", O_WRONLY|O_CREAT, 0640); |
| 6 | if (fd != -1) { |
| 7 | write(fd, "meow :3\n", 8); |
| 8 | write(1, "written\n", 8); |
| 9 | close(fd); |
| 10 | } |