This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix alpha build


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]