add acct syscall source file, omitted in last syscalls commit

This commit is contained in:
Rich Felker 2012-09-08 22:23:03 -04:00
parent 6cf8bfdb64
commit fe0260400e

9
src/unistd/acct.c Normal file
View File

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