From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24418 invoked by alias); 27 Feb 2004 11:13:37 -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 24398 invoked from network); 27 Feb 2004 11:13:34 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 27 Feb 2004 11:13:34 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id i1R93rt0006608; Fri, 27 Feb 2004 10:04:13 +0100 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i1R93W5j006606; Fri, 27 Feb 2004 10:03:32 +0100 Date: Fri, 27 Feb 2004 11:13:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Include stdlib.h in sysconf.c Message-ID: <20040227090332.GC3501@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.4i X-SW-Source: 2004-02/txt/msg00058.txt.bz2 Hi! strtol needs a prototype... 2004-02-27 Jakub Jelinek * sysdeps/unix/sysv/linux/sysconf.c: Include stdlib.h. --- libc/sysdeps/unix/sysv/linux/sysconf.c.jj 2004-02-27 12:07:17.000000000 +0100 +++ libc/sysdeps/unix/sysv/linux/sysconf.c 2004-02-27 12:08:19.769028686 +0100 @@ -18,6 +18,7 @@ 02111-1307 USA. */ #include +#include #include #include #include Jakub