diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-13 21:46:32 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-13 21:46:32 +0000 |
| commit | 4501ecc0ca8a38c4c416e95072079c6b05670e71 (patch) | |
| tree | 11a0416df0739687fdff14dd83a6238dcdb9cff4 | |
| parent | d3ef77f076b21405e3880259aff089260929b4c6 (diff) | |
| download | ppe42-gcc-4501ecc0ca8a38c4c416e95072079c6b05670e71.tar.gz ppe42-gcc-4501ecc0ca8a38c4c416e95072079c6b05670e71.zip | |
* gcc.c (getrusage): Wrap prototype arguments in PROTO().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29384 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a15dbc485e4..bdf5bb67deb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 13 17:44:28 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * gcc.c (getrusage): Wrap prototype arguments in PROTO(). + 1999-09-13 12:18 -0700 Zack Weinberg <zack@bitmover.com> * config/i370/i370.md (mulsi, divsi, modsi anonymous insns): diff --git a/gcc/gcc.c b/gcc/gcc.c index 89bae33bca5..aa98df02f07 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -48,7 +48,7 @@ compilation is specified by a string called a "spec". */ #include <sys/resource.h> #endif #ifdef NEED_DECLARATION_GETRUSAGE -extern int getrusage(int, struct rusage *); +extern int getrusage PROTO ((int, struct rusage *)); #endif /* By default there is no special suffix for executables. */ |

