1#define _GNU_SOURCE
2#include <errno.h>
3#include <unistd.h>
4
5int acct(const char* filename) {
6    errno = ENOSYS;
7    return -1;
8}
9