summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/acct.c
blob: ec392793666113b42c785ebfbfebc5c0a0eff631 (plain)
1
2
3
4
5
6
7
8
9
10
/* COVERAGE: acct */
#include <unistd.h>

int main()
{
  acct("foobar");
  // acct ("foobar") = -NNNN (EPERM)

  return 0;
}