From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1618 invoked by alias); 1 Feb 2006 16:34:54 -0000 Received: (qmail 1597 invoked by uid 22791); 1 Feb 2006 16:34:53 -0000 X-Spam-Check-By: sourceware.org Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 01 Feb 2006 16:34:48 +0000 Received: from sunsite.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.1/8.13.1) with ESMTP id k11GYZ1T019265; Wed, 1 Feb 2006 17:34:35 +0100 Received: (from jj@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id k11GYZnZ019264; Wed, 1 Feb 2006 17:34:35 +0100 Date: Wed, 01 Feb 2006 16:34:00 -0000 From: Jakub Jelinek To: Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix Message-ID: <20060201163435.GB4625@sunsite.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.4.1i Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2006-02/txt/msg00005.txt.bz2 Hi! While _IO_vfscanf and _IO_vfprintf are 1) exported from libc 2) prototyped in libio.h, the latter two are guarded with #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T and not exported. 2006-02-01 Jakub Jelinek * libio/bits/libio-ldbl.h (_IO_vfwscanf, _IO_vfwprintf): Remove __LDBL_REDIR_DECL. --- libc/libio/bits/libio-ldbl.h.jj 2006-01-14 13:09:48.000000000 +0100 +++ libc/libio/bits/libio-ldbl.h 2006-02-01 17:30:32.000000000 +0100 @@ -23,5 +23,3 @@ __LDBL_REDIR_DECL (_IO_vfscanf) __LDBL_REDIR_DECL (_IO_vfprintf) -__LDBL_REDIR_DECL (_IO_vfwscanf) -__LDBL_REDIR_DECL (_IO_vfwprintf) Jakub