Message-Id: <199704211119.LAA00701@bryggen.bgnett.no> From: "Gisle Vanem" To: , Subject: Re: Reduce .exe file size Date: Mon, 21 Apr 1997 13:18:30 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Precedence: bulk Ali Bharmal said: > // These are here to reduce personal.exe size, they are just dummy funcs > static void __crt0_load_environment_file(char *_app_name); > static void __crt0_setup_arguments(void); > static char **__crt0_glob_function(char *_arg); > These function cannot be static since they will not be seen by the linker. The linker will therefore use the default __crt0_ functions. Gisle V