diff options
author | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-23 23:20:30 +0000 |
---|---|---|
committer | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-23 23:20:30 +0000 |
commit | 1b3accb0687884e8e2d2bdd1f537543409819f68 (patch) | |
tree | 037c4b86caf65add0f1926060c9bad5652813ec0 /libf2c/libU77/idate_.c | |
parent | 7e6fc474e8961777ce34d7ac76e9e92061fa18e2 (diff) | |
download | gcc-1b3accb0687884e8e2d2bdd1f537543409819f68.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39216 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/libU77/idate_.c')
-rw-r--r-- | libf2c/libU77/idate_.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libf2c/libU77/idate_.c b/libf2c/libU77/idate_.c index c4075767a4c..572efd956eb 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 <stdio.h> +#include <sys/types.h> #if TIME_WITH_SYS_TIME # include <sys/time.h> # include <time.h> |