diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-08-31 14:55:10 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-08-31 14:55:10 +0000 |
commit | dabbade67e0b558a90c99f1c5173026a2c339ada (patch) | |
tree | 6a36d3a3e8f8d2265577bda9668a4d356d2be638 /opcodes/i386-dis.c | |
parent | a1438fce30be2e62cfcb2d798e46766c65b82316 (diff) | |
download | gdb-dabbade67e0b558a90c99f1c5173026a2c339ada.zip gdb-dabbade67e0b558a90c99f1c5173026a2c339ada.tar.gz gdb-dabbade67e0b558a90c99f1c5173026a2c339ada.tar.bz2 |
2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am (INCLUDES): Remove -D_GNU_SOURCE.
* Makefile.in: Regenerated.
* configure.in (AC_GNU_SOURCE): Added.
(AC_PROG_CC): Moved before AC_GNU_SOURCE.
(AC_CHECK_DECLS): Add stpcpy.
* configure: Regenerated.
* config.in: Likewise.
* i386-dis.c: Include "sysdep.h" before "dis-asm.h".
* sysdep.h (stpcpy): New.
Diffstat (limited to 'opcodes/i386-dis.c')
-rw-r--r-- | opcodes/i386-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 243b508..99ee397 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -33,8 +33,8 @@ and the small letter tells about the operand size. Refer to the Intel manual for details. */ -#include "dis-asm.h" #include "sysdep.h" +#include "dis-asm.h" #include "opintl.h" #include "opcode/i386.h" |