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

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

  return 0;
}