summaryrefslogtreecommitdiff
path: root/src/unistd/acct.c
blob: 93847127cabf71f4e158ca85ab73d4167c6836f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
#include "libc.h"

int acct(const char *filename)
{
        return syscall(SYS_acct, filename);
}