From Mark Kettenis: Re-order #includes. defs.h is always first.

This commit is contained in:
Andrew Cagney 2000-02-10 04:53:26 +00:00
parent 4bd6cdc521
commit 203051afde
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-02-09 Mark Kettenis <kettenis@gnu.org>
* linux-thread.c: Include defs.h before gdb_wait.h.
Wed Feb 9 18:59:16 2000 Andrew Cagney <cagney@b1.cygnus.com>
* Makefile.in (wait_h): Delete macro. Update all dependencies

View File

@ -47,13 +47,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
linuxthreads package heavily relies on wait() synchronization to keep
them correct. */
#include "defs.h"
#include <sys/types.h> /* for pid_t */
#include <sys/ptrace.h> /* for PT_* flags */
#include "gdb_wait.h" /* for WUNTRACED and __WCLONE flags */
#include <signal.h> /* for struct sigaction and NSIG */
#include <sys/utsname.h>
#include "defs.h"
#include "target.h"
#include "inferior.h"
#include "gdbcore.h"