mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-10 11:48:30 -05:00
9 lines
114 B
C++
9 lines
114 B
C++
![]() |
#include <sys/ptrace.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
ptrace(PT_DENY_ATTACH, 0, 0, 0);
|
||
|
return 0;
|
||
|
}
|