mirror of
git://git.musl-libc.org/musl
synced 2025-02-21 05:16:50 +00:00
add acct syscall source file, omitted in last syscalls commit
This commit is contained in:
parent
6cf8bfdb64
commit
fe0260400e
9
src/unistd/acct.c
Normal file
9
src/unistd/acct.c
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user