Remove asm labelling from _dll_crt0 since it seems to confuse different versions

of gcc differently.
This commit is contained in:
Christopher Faylor 2000-07-01 04:40:20 +00:00
parent 72f8054fad
commit 44cac41121
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ extern unsigned int signal_shift_subtract;
/* cygwin .dll initialization */
void dll_crt0 (per_process *);
extern "C" void __stdcall _dll_crt0 () __asm__ ("dll_crt0");
extern "C" void __stdcall _dll_crt0 ();
/* dynamically loaded dll initialization */
extern "C" int dll_dllcrt0 (HMODULE, per_process*);