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