mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
327421d1df
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
16 lines
303 B
C
16 lines
303 B
C
#define _GNU_SOURCE
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int err = acct("/tmp/t");
|
|
if (err == -1) {
|
|
fprintf(stderr, "acct failed: %s\n", strerror(errno));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
exit(EXIT_SUCCESS);
|
|
}
|