#include #include #include "open.h" int open_trunc(const char *fn) { return open(fn,O_WRONLY | O_NONBLOCK | O_TRUNC | O_CREAT,0644); }