#include "asm/unistd_64.h" // for __NR_creat #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); }