use libc-internal malloc for pthread_atfork
[musl] / src / unistd / acct.c
index 9384712..308ffc3 100644 (file)
@@ -1,9 +1,8 @@
 #define _GNU_SOURCE
 #include <unistd.h>
 #include "syscall.h"
-#include "libc.h"
 
 int acct(const char *filename)
 {
-        return syscall(SYS_acct, filename);
+       return syscall(SYS_acct, filename);
 }