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

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

  return 0;
}