diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-12-21 09:59:04 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-12-21 09:59:04 +0000 |
commit | f2af71ea96cd06282f469b3dc4ac50b8059f1843 (patch) | |
tree | ca506097a63ae865c11a39603d6b84f188756806 /winsup/utils/dumper.cc | |
parent | 97b09fe1c55dc843fc0bb8a87491aed8b620f63d (diff) | |
download | cygnal-f2af71ea96cd06282f469b3dc4ac50b8059f1843.tar.gz cygnal-f2af71ea96cd06282f469b3dc4ac50b8059f1843.tar.bz2 cygnal-f2af71ea96cd06282f469b3dc4ac50b8059f1843.zip |
* dumper.cc: Include ansidecl.h before including bfd.h to woraround
a problem with the order in which system include files are included.
Diffstat (limited to 'winsup/utils/dumper.cc')
-rw-r--r-- | winsup/utils/dumper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/dumper.cc b/winsup/utils/dumper.cc index da1de9536..01f761d72 100644 --- a/winsup/utils/dumper.cc +++ b/winsup/utils/dumper.cc @@ -1,6 +1,6 @@ /* dumper.cc - Copyright 1999, 2001, 2002, 2004 Red Hat Inc. + Copyright 1999, 2001, 2002, 2004, 2006 Red Hat Inc. Written by Egor Duda <deo@logos-m.ru> @@ -10,8 +10,8 @@ Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. */ -#include <bfd.h> #include <ansidecl.h> +#include <bfd.h> #include <elf/common.h> #include <elf/external.h> #include <sys/procfs.h> |