ctime_.c: #include <sys/types.h> for time_t.
authorMichael Sokolov <msokolov@ivan.Harhan.ORG>
Tue, 23 Jan 2001 23:20:30 +0000 (23:20 +0000)
committerMichael Sokolov <msokolov@gcc.gnu.org>
Tue, 23 Jan 2001 23:20:30 +0000 (23:20 +0000)
* libU77/ctime_.c: #include <sys/types.h> for time_t.
* libU77/datetime_.c: Likewise.
* libU77/fdate_.c: Likewise.
* libU77/gmtime_.c: Likewise.
* libU77/idate_.c: Likewise.
* libU77/itime_.c: Likewise.
* libU77/ltime_.c: Likewise.
* libU77/sys_clock_.c: Likewise.
* libU77/vxtidate_.c: Likewise.
* libU77/vxttime_.c: Likewise.

From-SVN: r39216

libf2c/ChangeLog
libf2c/libU77/ctime_.c
libf2c/libU77/datetime_.c
libf2c/libU77/fdate_.c
libf2c/libU77/gmtime_.c
libf2c/libU77/idate_.c
libf2c/libU77/itime_.c
libf2c/libU77/ltime_.c
libf2c/libU77/sys_clock_.c
libf2c/libU77/vxtidate_.c
libf2c/libU77/vxttime_.c

index 0308ccfe028dc0b5045b767511bf4213e50ab283..6c5704c8c45d56092f8f73aadfebbc73df8e1dce 100644 (file)
@@ -1,5 +1,16 @@
 2001-01-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
 
+       * libU77/ctime_.c: #include <sys/types.h> for time_t.
+       * libU77/datetime_.c: Likewise.
+       * libU77/fdate_.c: Likewise.
+       * libU77/gmtime_.c: Likewise.
+       * libU77/idate_.c: Likewise.
+       * libU77/itime_.c: Likewise.
+       * libU77/ltime_.c: Likewise.
+       * libU77/sys_clock_.c: Likewise.
+       * libU77/vxtidate_.c: Likewise.
+       * libU77/vxttime_.c: Likewise.
+
        * libU77/sys_clock_.c: #include <sys/param.h> for the clock tick rate.
 
 2000-12-09  Toon Moene  <toon@moene.indiv.nluug.nl>
index af5813772af6ccca0e966eb80a23979282f84854..a855cb59539fd6b8c4be0cf1daa19d19833ae08c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index 1ea77319e9684a1318b2377b5f400d2fbd17cde2..62b06b6ad3b67e10d9466bf5266fb1eeef1287b5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index afe8b24fc4496ed2e42ac20e51da3a392f35be04..a0bc9836f44b3d28d27d4027f96b45df0bb016b6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index 63ad871bbd0055ddf459f36988a6749df41fce31..8036b5aabe4f9c571fe51cf2a99deea91c410d50 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 /* fixme: do we need to use TM_IN_SYS_TIME? */
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
index c4075767a4c3419b7daeab5cb495ec4f4f8edfa2..572efd956eb1643d17b5d1aceedb997bb7adf4dc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index 50378d5442622e306deb6d37f28f94ae876221bd..ad47872dc8d006416e60b5003947a81c6fea32f6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index 673a0dba84550dfb46daed3bed77d42cae4ce135..d4afa878cea3833546e1bf828f61345ca3bfa527 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 /* fixme: do we need to use TM_IN_SYS_TIME? */
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
index 111d2ba63fa4a616eb9f00fc4a45bd0111f0c52d..86ee2fdefd5a49bb52953dc1535aa015ec9385c6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1998, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 #if HAVE_SYS_PARAM_H
 # include <sys/param.h>
 #endif
index dc817a7f4829eac4d28456f288c5f94dc95a8d2b..d5f289c7064b217539d45175c75c988ff00a9a1c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
index 054bb45a89a9b7069764ed4baeb678257e68ecc5..e45cc05d055191514a818329b78d38c072f2dd50 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 2001 Free Software Foundation, Inc.
 This file is part of GNU Fortran libU77 library.
 
 This library is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #endif
 #include <stdio.h>
+#include <sys/types.h>
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>