diff options
-rw-r--r-- | byterun/debugger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/debugger.c b/byterun/debugger.c index 4eb8cd1b8..1957664b5 100644 --- a/byterun/debugger.c +++ b/byterun/debugger.c @@ -13,6 +13,8 @@ /* Interface with the debugger */ +#include <string.h> + #include "config.h" #include "debugger.h" #include "fail.h" @@ -41,13 +43,11 @@ void debugger(event) #else -#include <string.h> #ifdef HAS_UNISTD #include <unistd.h> #endif #include <sys/types.h> #include <sys/wait.h> -#include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> #include <netinet/in.h> |