From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/4663 Path: news.gmane.org!not-for-mail From: Thomas Kreuzer Newsgroups: gmane.linux.lib.musl.general Subject: Re: Last call for bugfixes for 1.0 Date: Sun, 16 Mar 2014 16:08:14 +0100 Message-ID: <5325BE5E.6020001@rwth-aachen.de> References: <20140315075223.GA27718@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1394983322 24043 80.91.229.3 (16 Mar 2014 15:22:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Mar 2014 15:22:02 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-4667-gllmg-musl=m.gmane.org@lists.openwall.com Sun Mar 16 16:22:12 2014 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1WPCt7-0006iC-7N for gllmg-musl@plane.gmane.org; Sun, 16 Mar 2014 16:22:09 +0100 Original-Received: (qmail 23689 invoked by uid 550); 16 Mar 2014 15:22:07 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 15850 invoked from network); 16 Mar 2014 15:08:28 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=liU24TDZZzBW8etdRejbYp4T40tv8dj/QCX9kLbQIMo=; b=HiL5RokVcGnBLj8CrcI9ayFQSxly+cOnwG7UTTKmatqJGVcx8U8qVuaAyRuPg/G56C eK/i9F87R/KNuSouxSFrPlnVwnJkol1ylcMXKrCHZllc8C/OvVHN2XwZKJlxf4HBx0Nb ZZ8f7I95m6xjLuhWhKHvqCNXY+M6SvmLTdSpYraeibMoBPeCbQHPDWXFKxiJoYckLtwR rlyWzMt/NJZlSDDtLrw89F0j2o4CBDCd2l9oHAcGJaI3v6c6eaSNjyW3j1YtzdVCg268 2TJVWxcTRy0r79Tg5Yck75PKEHMEDtA4x4Hc9Diyk9kEACoza/sdI11m4SysOyrujB/E n2+g== X-Received: by 10.14.95.8 with SMTP id o8mr2851784eef.15.1394982497032; Sun, 16 Mar 2014 08:08:17 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 In-Reply-To: <20140315075223.GA27718@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:4663 Archived-At: Hello everyone, I noticed that I am unable to wirte my own fgetln function inside a static linked library, even though fgetln should only be exposed by GNU_SOURCE or BSD_SOURCE, or shouldn't it? I compile with "-std=c99 and -D_XOPEN_SOURCE=700" Everything compiles fine, but seg faults, when the function is used in a running program, if I rename the function, everything works as expected. Somehow the musl function fgetln interferes with my fgetln function. regards, Thomas On 15.03.2014 08:52, Rich Felker wrote: > I'm hoping to pack up and release 1.0 in the next few days, so please > report any issues that we might be able to fix before releasing. > > Rich >