streamline old-kernel fallback path of pipe2 to use syscalls directly
[musl] / src / unistd / acct.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
4 #include "libc.h"
5
6 int acct(const char *filename)
7 {
8         return syscall(SYS_acct, filename);
9 }