libiberty/mkstemps.c: Include <time.h> if <sys/time.h> not available.
authorJoel Brobecker <brobecker@adacore.com>
Fri, 8 May 2015 17:14:26 +0000 (17:14 +0000)
committerJoel Brobecker <brobecke@gcc.gnu.org>
Fri, 8 May 2015 17:14:26 +0000 (17:14 +0000)
libiberty/ChangeLog:

        * mkstemps.c: #include <time.h> if HAVE_TIME_H is defined
        but not HAVE_SYS_TIME_H.

(fixes a build failure on LynxOS-178)

From-SVN: r222918

libiberty/ChangeLog
libiberty/mkstemps.c

index 651f8a9a5f0dfee6a7da61a72d641a2c7b49f0c7..30da962795a68c3a6d87cdfdf6627275a7088acf 100644 (file)
@@ -1,3 +1,8 @@
+2015-05-08  Joel Brobecker  <brobecker@adacore.com>
+
+       * mkstemps.c: #include <time.h> if HAVE_TIME_H is defined
+       but not HAVE_SYS_TIME_H.
+
 2015-04-22  Eli Zaretskii  <eliz@gnu.org>
 
        * setenv.c <environ>: Declare only if not a macro.
index a0e68a73b4915d27d97b3b9d5d3779f6c3f7023f..0e06fe17059a03c9a0d343beecaa5d60b8dae00d 100644 (file)
@@ -35,6 +35,8 @@
 #endif
 #ifdef HAVE_SYS_TIME_H
 #include <sys/time.h>
+#elif HAVE_TIME_H
+#include <time.h>
 #endif
 #include "ansidecl.h"