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

17 lines
248 B
C

#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
int main(void)
{
int fd;
fd = open("test.txt", O_CREAT | O_EXCL,
S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
if (fd == -1)
perror("open");
close(fd);
return 0;
}