1
0
mirror of https://github.com/ioacademy-jikim/android_framwork synced 2025-06-07 07:56:34 +00:00
ioacademy-jikim 22beff8dbe 1
2018-06-14 09:32:50 +09:00

13 lines
196 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main()
{
int fd;
umask(0);
fd = open("aaa", O_CREAT| O_TRUNC | O_RDWR , 0666 );
close(fd);
return 0;
}