5 // Created by Kent Sutherland on Sun Nov 17 2002.
6 // Copyright (c) 2002 Kent Sutherland. All rights reserved.
9 #import <Cocoa/Cocoa.h>
10 #import <sys/ptrace.h>
12 static const int (*ptp)(int,int,caddr_t,int) = ptrace;
14 int main(int argc, const char *argv[])
17 ptp(PT_DENY_ATTACH,getpid(),NULL,0);
19 return NSApplicationMain(argc, argv);