From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Tue, 7 Oct 2014 17:24:52 +0200 From: Carsten Kunze To: 9fans@9fans.net Message-ID: <1341360045.898340.1412695492957.JavaMail.ngmail@webmail12.arcor-online.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [9fans] C question on struct Biobuf in bio.h Topicbox-Message-UUID: 18cedc8c-ead9-11e9-9d60-3106f5b1d025 Hello, in bio.h there is a struct Biobuf { Biobufhdr; uchar b[Bungetsize+Bsize]; }; where Biobufhdr is declared as typedef struct Biobufhdr Biobufhdr; To make it compile with gcc under UNIX I changed the struct to struct Biobuf { Biobufhdr Biobufhdr; uchar b[Bungetsize+Bsize]; }; but is that what is meant by the original description above? Carsten