#include // for creat #include // for mode_t #include // for __syscall_2, syscall int creat(const char *path, mode_t mode) { return syscall(creat, path, mode); }