From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13912 invoked by alias); 29 Sep 2002 12:29:40 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 13896 invoked from network); 29 Sep 2002 12:29:39 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 29 Sep 2002 12:29:39 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id g8TCTZR02178; Sun, 29 Sep 2002 14:29:35 +0200 Date: Sun, 29 Sep 2002 05:29:00 -0000 From: Jakub Jelinek To: Roland McGrath , Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix alpha build Message-ID: <20020929142935.H3451@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-SW-Source: 2002-09/txt/msg00088.txt.bz2 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 * 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