diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog index 0308ccfe028d..6c5704c8c45d 100644 --- a/libf2c/ChangeLog +++ b/libf2c/ChangeLog @@ -1,5 +1,16 @@ 2001-01-23 Michael Sokolov + * libU77/ctime_.c: #include 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 for the clock tick rate. 2000-12-09 Toon Moene diff --git a/libf2c/libU77/ctime_.c b/libf2c/libU77/ctime_.c index af5813772af6..a855cb59539f 100644 --- a/libf2c/libU77/ctime_.c +++ b/libf2c/libU77/ctime_.c @@ -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 #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/datetime_.c b/libf2c/libU77/datetime_.c index 1ea77319e968..62b06b6ad3b6 100644 --- a/libf2c/libU77/datetime_.c +++ b/libf2c/libU77/datetime_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/fdate_.c b/libf2c/libU77/fdate_.c index afe8b24fc449..a0bc9836f44b 100644 --- a/libf2c/libU77/fdate_.c +++ b/libf2c/libU77/fdate_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/gmtime_.c b/libf2c/libU77/gmtime_.c index 63ad871bbd00..8036b5aabe4f 100644 --- a/libf2c/libU77/gmtime_.c +++ b/libf2c/libU77/gmtime_.c @@ -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 /* fixme: do we need to use TM_IN_SYS_TIME? */ #if TIME_WITH_SYS_TIME # include diff --git a/libf2c/libU77/idate_.c b/libf2c/libU77/idate_.c index c4075767a4c3..572efd956eb1 100644 --- a/libf2c/libU77/idate_.c +++ b/libf2c/libU77/idate_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/itime_.c b/libf2c/libU77/itime_.c index 50378d544262..ad47872dc8d0 100644 --- a/libf2c/libU77/itime_.c +++ b/libf2c/libU77/itime_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/ltime_.c b/libf2c/libU77/ltime_.c index 673a0dba8455..d4afa878cea3 100644 --- a/libf2c/libU77/ltime_.c +++ b/libf2c/libU77/ltime_.c @@ -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 /* fixme: do we need to use TM_IN_SYS_TIME? */ #if TIME_WITH_SYS_TIME # include diff --git a/libf2c/libU77/sys_clock_.c b/libf2c/libU77/sys_clock_.c index 111d2ba63fa4..86ee2fdefd5a 100644 --- a/libf2c/libU77/sys_clock_.c +++ b/libf2c/libU77/sys_clock_.c @@ -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 #if HAVE_SYS_PARAM_H # include #endif diff --git a/libf2c/libU77/vxtidate_.c b/libf2c/libU77/vxtidate_.c index dc817a7f4829..d5f289c7064b 100644 --- a/libf2c/libU77/vxtidate_.c +++ b/libf2c/libU77/vxtidate_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include diff --git a/libf2c/libU77/vxttime_.c b/libf2c/libU77/vxttime_.c index 054bb45a89a9..e45cc05d0551 100644 --- a/libf2c/libU77/vxttime_.c +++ b/libf2c/libU77/vxttime_.c @@ -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 +#include #if TIME_WITH_SYS_TIME # include # include