pupy/client/sources-linux/fixes.h

17 lines
235 B
C
Raw Normal View History

#ifndef ___FIXES_H
#define ___FIXES_H
2017-04-03 16:40:20 +00:00
#include <linux/limits.h>
#include <string.h>
#include <sys/ptrace.h>
#ifndef PTRACE_GETSIGINFO
#define PTRACE_GETSIGINFO 0x4202
#endif
#ifndef EM_AARCH64
#define EM_AARCH64 183
#endif
2017-03-06 16:36:29 +00:00
#endif