2005-07-15 20:57:07 +00:00
|
|
|
#define _FILE_OFFSET_BITS 64
|
2001-02-02 17:54:47 +00:00
|
|
|
#include <unistd.h>
|
2003-10-10 17:13:38 +00:00
|
|
|
#include <fcntl.h>
|
2001-02-02 17:54:47 +00:00
|
|
|
#include "open.h"
|
|
|
|
|
2003-11-06 20:47:59 +00:00
|
|
|
#ifndef O_NDELAY
|
|
|
|
#define O_NDELAY 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int open_trunc(const char *filename) {
|
2001-02-02 17:54:47 +00:00
|
|
|
return open(filename,O_WRONLY|O_NDELAY|O_TRUNC|O_CREAT,0644);
|
|
|
|
}
|