Files
system-programming/chp1/syscalls/example1.c
Fabio Scotto di Santolo dd53e83af6 Reformat code
2025-07-04 10:39:07 +02:00

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;
}