From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29881 invoked by alias); 27 Jan 2005 17:47:54 -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 26323 invoked from network); 27 Jan 2005 17:46:16 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 27 Jan 2005 17:46:16 -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 j0RHkE7m007035; Thu, 27 Jan 2005 18:46:14 +0100 Received: (from jj@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id j0RHkEwM007034; Thu, 27 Jan 2005 18:46:14 +0100 Date: Thu, 27 Jan 2005 17:47:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Warning fixes Message-ID: <20050127174614.GW4777@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 X-SW-Source: 2005-01/txt/msg00073.txt.bz2 Hi! BTW, Roland, you checked in 2005-01-25 Roland McGrath * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl. ChangeLog entry but not the actual syslog.c change to shut up that warning. 2005-01-27 Jakub Jelinek * stdlib/tst-fmtmsg.c: Include stdlib.h. * stdio-common/tst-fmemopen2.c: Include string.h. --- libc/stdlib/tst-fmtmsg.c.jj 2005-01-26 18:22:23.000000000 +0100 +++ libc/stdlib/tst-fmtmsg.c 2005-01-27 18:10:44.184372575 +0100 @@ -1,6 +1,7 @@ #include #include #include +#include #include --- libc/stdio-common/tst-fmemopen2.c.jj 2005-01-06 03:08:27.000000000 +0100 +++ libc/stdio-common/tst-fmemopen2.c 2005-01-27 18:41:32.625070471 +0100 @@ -1,5 +1,6 @@ #include #include +#include #include Jakub