diff options
Diffstat (limited to 'src/fcntl/open.c')
-rw-r--r-- | src/fcntl/open.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fcntl/open.c b/src/fcntl/open.c index 4c3c8275..3eaa9014 100644 --- a/src/fcntl/open.c +++ b/src/fcntl/open.c @@ -19,3 +19,11 @@ int open(const char *filename, int flags, ...) return __syscall_ret(fd); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |