diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-10-03 22:39:08 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-10-03 22:39:08 +0200 |
commit | 429489e54f39016332a7f3a79ace6c42aafdf0c1 (patch) | |
tree | bcec92b1bd1a36a183676c3c493a338cba3db8b6 /gcc/longlong.h | |
parent | 5bbcd587a2aa8ea9427a737e6c9dade11f744867 (diff) | |
download | gcc-429489e54f39016332a7f3a79ace6c42aafdf0c1.zip gcc-429489e54f39016332a7f3a79ace6c42aafdf0c1.tar.gz gcc-429489e54f39016332a7f3a79ace6c42aafdf0c1.tar.bz2 |
* longlong.h (__udiv_qrnnd): Remove PARAMS from prototype.
From-SVN: r57787
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 83ce965..b886f2b 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -124,7 +124,7 @@ (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \ (r) = __r; \ } while (0) -extern UDItype __udiv_qrnnd PARAMS ((UDItype *, UDItype, UDItype, UDItype)); +extern UDItype __udiv_qrnnd (UDItype *, UDItype, UDItype, UDItype); #define UDIV_TIME 220 #endif /* LONGLONG_STANDALONE */ #ifdef __alpha_cix__ |