Date: Wed, 8 Oct 1997 09:45:12 -0400 (EDT) From: Peter Berdeklis To: Eli Zaretskii cc: djgpp AT delorie DOT com Subject: Re: [Q] array declaration In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 8 Oct 1997, Eli Zaretskii wrote: > > On Tue, 7 Oct 1997, Peter Berdeklis wrote: > > > Put the extern declaration in a header file, which is included by any > > file which references the array, including the file that allocates the > > array. > > I think this won't solve Victor's problem, because you still have to > declare the array in two different places. One place is the header file > you are suggesting, where it should be declared extern: > > extern char array[280]; > > The other place is that single source file which has to *define* the > array (so it gets allocated some space): > > char array[280]; That's exactly the problem I was addressing Eli. If you include the header file in the source file that defines the array, then the compiler will complain about a redefinition of the array only if the type or size of the array is different. If the type and size of the extern declaration and the definition are the same there will be no complaint. --------------- Peter Berdeklis Dept. of Physics, Univ. of Toronto