Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site lll-crg.ARpA
Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!ihnp4!ucbvax!ucdavis!lll-crg!brooks
From: brooks@lll-crg.ARpA (Eugene D. Brooks III)
Newsgroups: net.lang.c
Subject: Re:  Forward Referencing of Static Variables OK?
Message-ID: <896@lll-crg.ARpA>
Date: Sat, 5-Oct-85 14:49:28 EDT
Article-I.D.: lll-crg.896
Posted: Sat Oct  5 14:49:28 1985
Date-Received: Sun, 6-Oct-85 06:28:44 EDT
References: <1893@brl-tgr.ARPA> <737@cyb-eng.UUCP>
Reply-To: brooks@lll-crg.UUCP (Eugene D. Brooks III)
Organization: Lawrence Livermore Labs, CRG Group
Lines: 10

extern int thing;

static int thing = 3;

main()
{
	int thing = 5;
}

Where is the ambiguity now?