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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/longlong.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e9e0737..fa51788 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2002-10-03 Jakub Jelinek <jakub@redhat.com> + * longlong.h (__udiv_qrnnd): Remove PARAMS from prototype. + +2002-10-03 Jakub Jelinek <jakub@redhat.com> + * gcc.c (print_multi_os_directory): New variable. (option_map): Support --print-multi-os-directory. (struct prefix_list): Add os_multilib field. 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__ |