Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-07-01 08:40:20 +0400
committerChristopher Faylor <me@cgf.cx>2000-07-01 08:40:20 +0400
commit44cac4112164ac91fe00e3acf0dd1c567a937313 (patch)
treef5d34de9914bd21c0196f48a448447c7e127be7a
parent72f8054fad05e3dce132498f37d04391bdc63e51 (diff)
Remove asm labelling from _dll_crt0 since it seems to confuse different versions
of gcc differently.
-rw-r--r--winsup/cygwin/winsup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h
index 56eb0792d..5144970ca 100644
--- a/winsup/cygwin/winsup.h
+++ b/winsup/cygwin/winsup.h
@@ -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*);