From patchwork Fri Jan 23 18:42:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 432279 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46601140188 for ; Sat, 24 Jan 2015 05:44:02 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=OKnVrdC2pYO/9kiXWRyPzKwPm8wAHZ4b15K+PZMG2g+T8O Y/M3flhWzCASM6Cj4jNNcDNVMl4pf7iAV2uaYB3HaqpEbqYRRiTkDmxr7wdPhFZI QPOcLdDRjQxmJ+38647L62b4A5lqkbonXRAaaNXx89q0B15rc42h3z/GB/eCw= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=wtIuUzDQXCDriL8Z8evuJ3FCTic=; b=cB4hZacz3CUAe3LFGDuy rVciBKashZ4HMzPkTkuRH6A5akLlzrlatnAfuMD2tuj9vy66vtRCTxBzk9AgRgMZ A7uhmmxBv3bTV1Gyi5wWe0eZghJqUBau120B5lNQuQdeMUEVm0VtbGsFQ2rnFisv mreSh5gV1+EvJuz/yC46rsc= Received: (qmail 3290 invoked by alias); 23 Jan 2015 18:43:11 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 3147 invoked by uid 89); 23 Jan 2015 18:42:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] Add missing libc_hidden_def to stub getrlimit64. Message-Id: <20150123184244.B93C62C3B8F@topped-with-meat.com> Date: Fri, 23 Jan 2015 10:42:44 -0800 (PST) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=HB2Js1iRHWMYm1koW1MA:9 a=CjuIK1q_8ugA:10 a=wj-XS0a-PcQA:10 a=7EhE1lEVD8oA:10 a=5mdcYeBPmrAA:10 2015-01-23 Roland McGrath * resource/getrlimit64.c: Add missing libc_hidden_def. --- a/resource/getrlimit64.c +++ b/resource/getrlimit64.c @@ -40,3 +40,4 @@ getrlimit64 (enum __rlimit_resource resource, struct rlimit64 *rlimits) return 0; } +libc_hidden_def (getrlimit64)