From: Rich Felker Date: Sun, 9 Sep 2012 02:23:03 +0000 (-0400) Subject: add acct syscall source file, omitted in last syscalls commit X-Git-Tag: v0.9.5~31 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fe0260400eebb613338a720c9568c10ab4f17225;p=oweals%2Fmusl.git add acct syscall source file, omitted in last syscalls commit --- diff --git a/src/unistd/acct.c b/src/unistd/acct.c new file mode 100644 index 00000000..93847127 --- /dev/null +++ b/src/unistd/acct.c @@ -0,0 +1,9 @@ +#define _GNU_SOURCE +#include +#include "syscall.h" +#include "libc.h" + +int acct(const char *filename) +{ + return syscall(SYS_acct, filename); +}