[PATCH] Fix alpha build
Jakub Jelinek
jakub@redhat.com
Sun Sep 29 05:29:00 GMT 2002
Hi!
PARAMS(args) is not defined on Alpha. In fact, IMHO GCC doesn't need
it either, since longlong.h is only used in libgcc.a which is compiled
already by gcc, not host compiler, and without -Wtraditional.
2002-09-29 Jakub Jelinek <jakub@redhat.com>
* stdlib/longlong.h (__udiv_qrnnd): Remove PARAMS from prototype.
--- libc/stdlib/longlong.h.jj Sat Sep 28 16:40:59 2002
+++ libc/stdlib/longlong.h Sun Sep 29 08:19:21 2002
@@ -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__
Jakub
More information about the Libc-hacker
mailing list