Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cwjcc!hal!nic.MR.NET!umn-cs!raghavan From: raghavan@umn-cs.CS.UMN.EDU (Vijay Raghavan) Newsgroups: comp.lang.c Subject: Re: Include files Message-ID: <10995@umn-cs.CS.UMN.EDU> Date: 28 Jan 89 20:14:22 GMT References: <10991@umn-cs.CS.UMN.EDU> <9526@smoke.BRL.MIL> Reply-To: raghavan@umn-cs.cs.umn.edu (Vijay Raghavan) Organization: CSci Dept., University of Minnesota, Mpls. Lines: 65 In article <9526@smoke.BRL.MIL> gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) writes: raghavan@umn-cs.cs.umn.edu (I) wrote: <>[...] does the standard <>condone/permit/require stdio.h (say) to have the following structure: <>#ifndef FILE <> ... <>#define FILE struct _iobuf <> ... <>#endif !__FILE < If it does, programs like the following should not compile: <>main() { <>#include <>FILE *xx; <>... <>} <>proc1() { <>#include <>FILE *yy; <>... <>} <