diff options
author | Pierre Muller <muller@sourceware.org> | 2007-10-08 14:40:42 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2007-10-08 14:40:42 +0000 |
commit | 3c61c145cc02ff7ec9ec2435651ebe6825dddaa6 (patch) | |
tree | 490d9f7a069fd37ea0ed94938aecd54296a5cdf4 | |
parent | c7f0a8e098119312e57c77969a0c6646abfd2040 (diff) | |
download | gdb-3c61c145cc02ff7ec9ec2435651ebe6825dddaa6.zip gdb-3c61c145cc02ff7ec9ec2435651ebe6825dddaa6.tar.gz gdb-3c61c145cc02ff7ec9ec2435651ebe6825dddaa6.tar.bz2 |
2007-10-08 Pierre Muller <muller@ics.u-strasbg.fr>
* linux-fork.c: Move "gdb_wait.h" include back to the position of
<sys/wait.h> include before last commit.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/linux-fork.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index df6b352..ee2e1d2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-10-08 Pierre Muller <muller@ics.u-strasbg.fr> + + * linux-fork.c: Move "gdb_wait.h" include back to the position of + <sys/wait.h> include before last commit. + 2007-10-08 Maciej W. Rozycki <macro@mips.com> * mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL. diff --git a/gdb/linux-fork.c b/gdb/linux-fork.c index 83d92fe..82ff525 100644 --- a/gdb/linux-fork.c +++ b/gdb/linux-fork.c @@ -26,9 +26,9 @@ #include "gdb_string.h" #include "linux-fork.h" #include "linux-nat.h" -#include "gdb_wait.h" #include <sys/ptrace.h> +#include "gdb_wait.h" #include <sys/param.h> #include <dirent.h> #include <ctype.h> |