From: Endlisnis Newsgroups: comp.os.msdos.djgpp Subject: Re: Problem, help? Date: Tue, 7 Jul 1998 18:47:48 -0300 Organization: University of New Brunswick Lines: 14 Message-ID: References: <35A22C13 DOT D87318DA AT netrover DOT com> NNTP-Posting-Host: sol-alt1.unb.ca Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII In-Reply-To: <35A22C13.D87318DA@netrover.com> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Tue, 7 Jul 1998, Adam Burakowski wrote: ->Alright, I'm very new at DJGPP and so far all I've managed to ->it it gives me these 2 errors: ->Error:c:/djgpp/lib\crt0.o(.data+0x92):crt0.s: undefined reference to ->'main' ->Error:c:/djgpp/lib\libc.a(crt1.o)(.text+0x312):crt1.c: undefined ->reference to 'main' That error means that the linker didn't find a function called 'main' in your program. Make sure your program has a function called "main()" in all lower case. -Endlisnis