mirror of
https://github.com/ioacademy-jikim/android_framwork
synced 2025-06-07 07:56:34 +00:00
13 lines
196 B
C
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;
|
|
}
|