Date: Thu, 20 Jan 2000 09:30:17 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: David Cleaver cc: djgpp AT delorie DOT com Subject: Re: Problem with include files... In-Reply-To: <3886794F.9CF4D16@ou.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 19 Jan 2000, David Cleaver wrote: > unsigned char table011[][] = {{ 0, 0}, This is not valid C: you can't leave both dimensions unspecified. Only the last dimension can be left unspecified. In other words, you need to say this: unsigned char table011[2][] = {{ 0, 0},