1 2 3 4 5 6 7
#include <fcntl.h> #include <syscall.h> int creat(const char *path, mode_t mode) { return syscall(creat, path, mode); }