mirror of
https://github.com/fluencelabs/musl
synced 2025-06-04 10:31:37 +00:00
10 lines
159 B
C
10 lines
159 B
C
|
#define _GNU_SOURCE
|
||
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
#include "libc.h"
|
||
|
|
||
|
int acct(const char *filename)
|
||
|
{
|
||
|
return syscall(SYS_acct, filename);
|
||
|
}
|