remove unused weak definition of __tl_sync in membarrier.c
[musl] / src / unistd / acct.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
4
5 int acct(const char *filename)
6 {
7         return syscall(SYS_acct, filename);
8 }