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