#include <stdio.h>
#include <sys/types.h>
#include <sys/ptrace.h>

int main()
{
  ptrace(PT_DENY_ATTACH, 0, 0, 0);

  printf("traced = 0\n");
}