diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-11 21:37:59 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-11 21:37:59 +0000 |
commit | d7a3e450144301dd0b8b96b7729aaddbb4c598a2 (patch) | |
tree | 1422a97f576d5f787fecca04014ac5724183cc39 /gcc/mips-tdump.c | |
parent | 58f2656d8e3b8ff171041e93b5f664d4358e67ae (diff) | |
download | gcc-d7a3e450144301dd0b8b96b7729aaddbb4c598a2.tar.gz |
Include <time.h>. Delete ctime prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8425 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mips-tdump.c')
-rw-r--r-- | gcc/mips-tdump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c index cba744e578e..9e315031d2a 100644 --- a/gcc/mips-tdump.c +++ b/gcc/mips-tdump.c @@ -1,7 +1,7 @@ /* Read and manage MIPS symbol tables from object modules. - Source originally from hartzell@boulder.colorado.edu - Rewritten by: meissner@osf.org - Copyright (C) 1991 Free Software Foundation, Inc. + Copyright (C) 1991, 1994 Free Software Foundation, Inc. + Contributed by hartzell@boulder.colorado.edu, + Rewritten by meissner@osf.org. This file is part of GNU CC. @@ -22,6 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <stdio.h> #include <sys/types.h> #include <sys/file.h> +#include <time.h> #include <fcntl.h> #include <errno.h> #include "config.h" @@ -273,7 +274,6 @@ extern PTR_T calloc __proto((size_t, size_t)); extern PTR_T realloc __proto((PTR_T, size_t)); extern void free __proto((PTR_T)); #endif -extern char *ctime __proto((time_t *)); extern char *optarg; extern int optind; |