From patchwork Fri Mar 3 11:07:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 734998 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 3vZRGX2KtLz9s7c for ; Fri, 3 Mar 2017 22:07:16 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="F3V539Uy"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; q=dns; s=default; b= GbK+qq5Nr3eXdBHh6SzeJjt9r61JqLyM32raLO1hg8vob8/LiPoNBuzlJsznY/BK 0awcRwYJd99uCTcgtgc6QsKK5epBrze6HA1Ys7RX3XG2CatkFsqG0HlXlEKMW70s G2+l9ZEQgaVcxunS9q2XPl9npg55zpzy2YR8Aqry0bM= 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:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; s=default; bh=gdBxfS A4V3Vq9AsSdNAOh0I9vY0=; b=F3V539UyE8gX46wo+UDzrGsF46+lNLigc2dUO9 hvBccmm50eBQRsyqSCdRjpRY5zvRnYkd7X4RpR4nX7cLhe7D9UpGXhvvgbNkuvXf LeWOcXCkBRzO2Tj7pYxpfBDMOnYrNT8cf9c9AVgME/MSKsoQH9QYe8P3LU2IE4me LdEWA= Received: (qmail 66696 invoked by alias); 3 Mar 2017 11:07:03 -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 66683 invoked by uid 89); 3 Mar 2017 11:07:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Date: Fri, 03 Mar 2017 12:07:00 +0100 To: libc-alpha@sourceware.org Subject: [PATCH COMMITTED] tzset: Remove unused NOID macro User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20170303110700.AB99A414EFFE3@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) 2017-03-03 Florian Weimer * time/tzfile.c (NOID): Do not define. * time/tzset.c (NOID): Likewise. diff --git a/time/tzfile.c b/time/tzfile.c index 3fd4569..4987f1a 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -26,7 +26,6 @@ #include #include -#define NOID #include int __use_tzfile; diff --git a/time/tzset.c b/time/tzset.c index 404f1db..262bbe5 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -25,8 +25,6 @@ #include #include - -#define NOID #include char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };