10 lines
165 B
C
10 lines
165 B
C
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
int fd = open("test.txt", O_CREAT | O_RDWR);
|
|
// close(fd);
|
|
return EXIT_SUCCESS;
|
|
}
|