blob: fd2c8d08a53175b6fe2e181762ad3f72ab62d096 [file] [log] [blame]
#define _GNU_SOURCE
#include <errno.h>
#include <unistd.h>
int acct(const char* filename) {
errno = ENOSYS;
return -1;
}