aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/acct.c
blob: b9e50e3203ca76211cc18b3f49e18b6b4fb95d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif