diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-29 12:35:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-29 12:35:09 +0000 |
commit | f2672dddd1604f2eeb58f655bf0c81c0ef08f9d2 (patch) | |
tree | 1dc5c8927e3932273f8dca5ba742ffd52afc4176 /stdlib | |
parent | 72d4c33d4ca847466c4557024376a2234838a505 (diff) | |
download | glibc-f2672dddd1604f2eeb58f655bf0c81c0ef08f9d2.tar.gz glibc-f2672dddd1604f2eeb58f655bf0c81c0ef08f9d2.tar.xz glibc-f2672dddd1604f2eeb58f655bf0c81c0ef08f9d2.zip |
* stdlib/longlong.h (__udiv_qrnnd): Remove PARAMS from prototype.
2002-09-29 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/longlong.h b/stdlib/longlong.h index 476f36474f..cd1e30ed2e 100644 --- a/stdlib/longlong.h +++ b/stdlib/longlong.h @@ -126,7 +126,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__ |