From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 1 Mar 2006 12:56:13 -0500 From: Dan Cross To: 9fans@cse.psu.edu Message-ID: <20060301175613.GA826@augusta.math.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: [9fans] A Plan 9 C request.... Topicbox-Message-UUID: 08129fb2-ead1-11e9-9d60-3106f5b1d025 Here's a request for my favorite C feature from C99, which isn't yet in Plan 9 C. I'd really like it if one could write statements of the form, for (int i = 0; i < 10; i++); or for (char *p = s; *p != '\0'; p++); That is, declare variables in the first part of a for loop. That would be nice. Anyone care to add it to the compiler? I'd try it myself, but I'm just too busy right now.... - Dan C.