summaryrefslogtreecommitdiff
path: root/libiberty/sort.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2000-07-23 19:20:18 +0000
committerJeff Law <law@redhat.com>2000-07-23 19:20:18 +0000
commitba72e8fe3f6ff3d3b7f37f5ff289150a3523ba40 (patch)
tree88ee5741217fe2507b6fe1e4f263f3f85f065ea0 /libiberty/sort.c
parent4316b40ad54f23fd6e367e151a1768144b5ff93b (diff)
downloadgdb-ba72e8fe3f6ff3d3b7f37f5ff289150a3523ba40.tar.gz
* configure.in (AC_CHECK_HEADERS): Add time.h.
(AC_HEADER_TIME): Add check. * configure, config.in: Regenerate. * getruntime.c: Portably #include <sys/time.h> and/or <time.h>.
Diffstat (limited to 'libiberty/sort.c')
-rw-r--r--libiberty/sort.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/sort.c b/libiberty/sort.c
index da2d660b6f5..90c97e04e07 100644
--- a/libiberty/sort.c
+++ b/libiberty/sort.c
@@ -24,7 +24,12 @@ Boston, MA 02111-1307, USA. */
#endif
#include "libiberty.h"
#include "sort.h"
+#ifdef HAVE_LIMITS_H
#include <limits.h>
+#endif
+#ifdef HAVE_SYS_PARAM_H
+#include <sys/param.h>
+#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif