musl/src/unistd/acct.c

10 lines
152 B
C
Raw Normal View History

#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int acct(const char *filename)
{
return syscall(SYS_acct, filename);
}