From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19591 invoked by alias); 6 Jun 2007 17:03:23 -0000 Received: (qmail 19583 invoked by uid 22791); 6 Jun 2007 17:03:23 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 06 Jun 2007 17:03:21 +0000 Received: from zps36.corp.google.com (zps36.corp.google.com [172.25.146.36]) by smtp-out.google.com with ESMTP id l56H3DPq031816; Wed, 6 Jun 2007 10:03:13 -0700 Received: from localhost.localdomain.google.com (dhcp-172-18-119-189.corp.google.com [172.18.119.189]) (authenticated bits=0) by zps36.corp.google.com with ESMTP id l56H2tgV018057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 6 Jun 2007 10:02:55 -0700 To: "Bruce Butler" Cc: Subject: Re: GNU gcc 3.4.6 Compile Error on Solaris 10 References: <47579AF2139B5F428A8B5BCAA8872C7C587BAD@exchq1.induscorp.com> From: Ian Lance Taylor Date: Wed, 06 Jun 2007 17:03:00 -0000 In-Reply-To: <47579AF2139B5F428A8B5BCAA8872C7C587BAD@exchq1.induscorp.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-06/txt/msg00072.txt.bz2 "Bruce Butler" writes: > void do_remarks_process( id, sec_str, va_alist ) > int id; > char *sec_str; > char *va_alist; Old style varargs are no longer supported. In order to use newer versions of gcc you need to use ISO C style stdarg. That is, void do_remarks_process (int id, char *sec_str, ...) Ian