Date: Tue, 14 Apr 1998 13:06:34 +0300 (IDT) From: Eli Zaretskii To: Christopher Bier cc: djgpp AT delorie DOT com Subject: Re: startup functions on gnu c/c++? In-Reply-To: <35330B14.F9D6578B@yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Tue, 14 Apr 1998, Christopher Bier wrote: > While you might not be able to define new start-up > functions, you can define your own versions of preexisting ones. > > #include > > void __crt0_setup_arguments (void); Beware: this way, you lose the command-line arguments' setup normally done by the startup code. (You could, of course, take the source of the library version of __crt0_setup_arguments and *add* whatever you need to it.)