diff options
Diffstat (limited to 'src/unistd/acct.c')
-rw-r--r-- | src/unistd/acct.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/acct.c b/src/unistd/acct.c index 308ffc38..b9e50e32 100644 --- a/src/unistd/acct.c +++ b/src/unistd/acct.c @@ -6,3 +6,11 @@ int acct(const char *filename) { return syscall(SYS_acct, filename); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |