Date: Wed, 14 Jul 1999 16:51:01 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Anton Helm cc: djgpp AT delorie DOT com Subject: Re: Hiding globals when using flex/bison in a library In-Reply-To: <4.2.0.58.19990714133218.00a4cc50@hal.nt.tuwien.ac.at> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 14 Jul 1999, Anton Helm wrote: > - All identifiers that begin with an underscore are always reserved for use > as identifiers with file scope in both the ordinary identifiers and tag > name spaces. > [...] > Does it mean: > - I am allowed to use _abcdef as an identifier with file scope *ONLY*. > > or > > - I am *NOT* allowed to use _abcdef as an identifier with file scope. The latter, I think: you are *not* allowed to use _abcdef if it has a file scope. It can only have a block scope.