You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#define _FILE_OFFSET_BITS 64
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include "io_internal.h"
|
|
|
|
int io_createfile(int64* d,const char* s) {
|
|
long fd=open(s,O_WRONLY|O_CREAT|O_TRUNC,0600);
|
|
if (fd != -1) {
|
|
*d=fd;
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|