From: Nick Clifton Date: Wed, 13 Dec 2000 18:42:28 +0000 (+0000) Subject: #include only if it exists. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42dbf88c398e280c252cb18db6faaeb2f776c913;p=binutils-gdb.git #include only if it exists. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index abbb0a1fcf1..35ed0efb78d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-12-13 Michael Sokolov + + * dwarf2dbg.c: #include only if it exists. + 2000-12-13 Rodney Brown * config/tc-hppa.c (pa_ip): Correct CHECK_FIELD typo. diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index 5866cb4ae6b..a8d8d7e1cfb 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -28,10 +28,12 @@ FILENO is the filenumber. */ #include "ansidecl.h" -#include - #include "as.h" +#ifdef HAVE_LIMITS_H +#include +#endif + #ifdef BFD_ASSEMBLER #include "dwarf2dbg.h"