summaryrefslogblamecommitdiff
path: root/src/unistd/acct.c
blob: f6f25a8a62de67e53f34ecc1a9774f608a7dd7e7 (plain) (tree)
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);
}