From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: tuhs-bounces@minnie.tuhs.org X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 16955fb6 for ; Tue, 30 Oct 2018 09:58:30 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 9ABF0A204B; Tue, 30 Oct 2018 19:58:29 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 65F5CA1FAF; Tue, 30 Oct 2018 19:58:03 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id B5F48A1F9E; Tue, 30 Oct 2018 18:52:01 +1000 (AEST) Received: from junk.nocrew.org (junk.nocrew.org [51.15.56.219]) by minnie.tuhs.org (Postfix) with ESMTPS id 56DF6A1F9C for ; Tue, 30 Oct 2018 18:52:01 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=junk.nocrew.org) by junk.nocrew.org with esmtp (Exim 4.86_2) (envelope-from ) id 1gHPkl-0006qh-M7; Tue, 30 Oct 2018 08:51:59 +0000 From: Lars Brinkhoff To: Steve Simon Organization: nocrew References: <47BC5434-D668-48D1-AA45-361B6D1E2E3A@quintile.net> Date: Tue, 30 Oct 2018 08:51:59 +0000 In-Reply-To: <47BC5434-D668-48D1-AA45-361B6D1E2E3A@quintile.net> (Steve Simon's message of "Tue, 30 Oct 2018 08:02:50 +0000") Message-ID: <7wo9bbes0g.fsf@junk.nocrew.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [TUHS] C entry keyword X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: tuhs@minnie.tuhs.org Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" Steve Simon wrote: > =E2=80=9Centry=E2=80=9D was a reserved word in K&R Ed.1, > my personal favourite C trivia. I have never seen it used outside > fortran on mainframes though. It's there in Snyder's C compiler, but not used. From the grammar: statement: ... | ENTRY identifier ':' statement {val=3Daentry(#2,#4);} But the supporting code in the compiler: aentry (idn, stmt) {return (stmt);} /* not implemented */