Skip to content
Snippets Groups Projects
Commit a7a370db authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

fix solaris compile ... finally.

parent 155296b0
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,12 @@ ...@@ -32,7 +32,12 @@
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/un.h> #include <sys/un.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <sys/ptrace.h> #ifdef __sun
# define PT_TRACE_ME 0
# define PT_DETACH 7
#else
# include <sys/ptrace.h>
#endif
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <signal.h> #include <signal.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment