...
Code Block | ||
---|---|---|
| ||
/* ... */ int fd = open(file_namems, O_CREAT |O_EXCL| O_WRONLY|O_TRUNC, file_access_permissions); if (fd == -1){ /* Handle Error */ } /* ... */ |
...
...
Code Block | ||
---|---|---|
| ||
/* ... */ int fd = open(file_namems, O_CREAT |O_EXCL| O_WRONLY|O_TRUNC, file_access_permissions); if (fd == -1){ /* Handle Error */ } /* ... */ |
...