From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 4181 invoked from network); 17 Aug 2021 09:16:17 -0000 Received: from 1ess.inri.net (216.126.196.35) by inbox.vuxu.org with ESMTPUTF8; 17 Aug 2021 09:16:17 -0000 Received: from mail-lf1-f46.google.com ([209.85.167.46]) by 1ess; Tue Aug 17 01:28:50 -0400 2021 Received: by mail-lf1-f46.google.com with SMTP id i9so18362070lfg.10 for <9front@9front.org>; Mon, 16 Aug 2021 22:28:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to; bh=eIlDg95RNqoy4aKUXzP1gp4cEPqjTVADTsfWvxrpo78=; b=ATztqILLYnL2aBMvsHvEYJ8O9RdCI+aWhb2jf9wDS/aNbeIq4/O4Zutp5OPuUoZUfq ca6f7cTxTqMSUQfzYyG0bAq/VOoC8E2RhUkhBZh/eifXpPIftAYZQ+VzKMGMy5TQIAQR R9rOist2pRKBHGGeZosZ29dHXXLm8DiWKRONhwP6/sCdd6TFfrzoRd8DUp7wug6yWpnC X/VPyz+CTkc3g60U4IK5s1D8/bkW99O6xXqpXxm36f8R6C1jvWXjO2S+Es5hUKjCsH1Q lnY3wqSAEmP1+0PW+uCVsGElYHn4jq30NV5CnX+pQDi19GwUxOP6jEeB99lwI/qObKXr n78Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=eIlDg95RNqoy4aKUXzP1gp4cEPqjTVADTsfWvxrpo78=; b=ZWoTIqqiJdX0nSV+DiHmAZ6YJD0Tq2+HLKX8vn1qf8zVwneF7tUBM+Jb+rA4MI2nzZ qkmaiy7o4yXh8a4+XjhgXF3Dkelj9MnP+Z9cQOvB4O7nJeswjMZ3geoFwy7N5V3u4N25 B7eCerEzuth1yRTKtFycxL6gDGfw0OOI/8sA5cHAvqgA2de8Al2vp9aLV4d19pwX/UIc IkYv3S01iYL5y4pU7RKqFlclJVXol2X4dV2yknfHiY02aldb7aafqOYmhR6PcjPymo3Y OFwrYeyQiewWDi4Po1HluYGNA63kti/SKZOdtMjN3tVsBCHcHo8rvDepldCYBO5jzIs6 G6DA== X-Gm-Message-State: AOAM530skRH2CUDznT09XWjxn7m3Hw7E5htQL+df2XuqAXYs+SZYpJVI Dbbk8DRpfDe6b6S+XFEUd8iGTzWfO04= X-Google-Smtp-Source: ABdhPJzZzoILOWm8r+x8ggB7mWmzAi4QjwOZtFl3Et/ry8E5E7FSPU9Winx9k6FAF1UR8kSDTRuU8A== X-Received: by 2002:adf:f40d:: with SMTP id g13mr226595wro.69.1629145042277; Mon, 16 Aug 2021 13:17:22 -0700 (PDT) Return-Path: Received: from beryllium.local (dialin-80-228-140-039.ewe-ip-backbone.de. [80.228.140.39]) by smtp.gmail.com with ESMTPSA id t14sm54017wmj.2.2021.08.16.13.17.21 for <9front@9front.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 16 Aug 2021 13:17:21 -0700 (PDT) Received: from localhost (beryllium.local [local]) by beryllium.local (OpenSMTPD) with ESMTPA id 3adb1abe for <9front@9front.org>; Mon, 16 Aug 2021 22:17:20 +0200 (CEST) Date: Mon, 16 Aug 2021 22:17:20 +0200 From: Humm To: 9front@9front.org Message-ID: References: <437E2921905BD8562CDD1627C4CFBE0E@qak> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: lossless extensible rich-client layer Subject: Re: [9front] exportfs: fix debug logging Reply-To: 9front@9front.org Precedence: bulk >> You most definitely can. What makes you think otherwise? > > Because I tried it. Example: that Abaco patch (attached to the > email you are responding to) except take away the { } around int i; > Text *status. > > Not complaining, just saying. Plan 9 C works like C99 in this regard: You can mix declarations and statements however you want, but you can’t put labels on declarations. (In C2x, you can.) You find declarations at the beginning of compound statements often because they couldn’t be mixed with statements in C89. -- Humm