diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1996-12-11 16:29:28 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1996-12-11 16:29:28 +0000 |
commit | e382f2308cfc9d5b22f341f47f76ec1afbf58dc5 (patch) | |
tree | 5d98d96984c6fba9dfb7980ca65872f5400421db | |
parent | c8a47a2be9ca3a2b67eede7c048594b015d6fc63 (diff) |
fix des includes
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1223 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-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> |