diff options
Diffstat (limited to 'src/unistd/sync.c')
-rw-r--r-- | src/unistd/sync.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/sync.c b/src/unistd/sync.c index f18765aa..70418d61 100644 --- a/src/unistd/sync.c +++ b/src/unistd/sync.c @@ -5,3 +5,11 @@ void sync(void) { __syscall(SYS_sync); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |