11 lines
162 B
C
11 lines
162 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;
|
|
}
|