diff options
Diffstat (limited to 'gcc/timevar.c')
-rw-r--r-- | gcc/timevar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/timevar.c b/gcc/timevar.c index 776f575..6fa1610 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -80,7 +80,7 @@ struct tms #else #ifdef HAVE_GETRUSAGE # if defined HAVE_DECL_GETRUSAGE && !HAVE_DECL_GETRUSAGE - extern int getrusage PARAMS ((int, struct rusage *)); + extern int getrusage (int, struct rusage *); # endif # define USE_GETRUSAGE # define HAVE_USER_TIME @@ -88,7 +88,7 @@ struct tms #else #ifdef HAVE_CLOCK # if defined HAVE_DECL_CLOCK && !HAVE_DECL_CLOCK - extern clock_t clock PARAMS ((void)); + extern clock_t clock (void); # endif # define USE_CLOCK # define HAVE_USER_TIME |