Path: utzoo!utgpu!water!watmath!clyde!att!pacbell!ames!ll-xn!mit-eddie!uw-beaver!uw-june!uw-entropy!dataio!pilchuck!ssc!fyl From: fyl@ssc.UUCP (Phil Hughes) Newsgroups: comp.unix.xenix Subject: Re: HELP!!! Message-ID: <1345@ssc.UUCP> Date: 22 Jul 88 00:07:18 GMT References: <5029@ozdaltx.UUCP> Organization: Slugland, USA Lines: 19 In article <5029@ozdaltx.UUCP>, root@ozdaltx.UUCP (root) writes: : I'm running SCO XENIX 2.2.1 and am trying to compile a : program that contains the following code: : main() : { : unsigned char p[720][72]; : ; : } : I keep getting the following error message test.c test.c(2) : error 126: auto allocation exceeds 32K : What do I need to do to get this to compile??? Move the unsigned ... outside of main. In other words, make it a static instead of an automatic. -- Phil uunet!pilchuck!ssc!fyl