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:26:45 +0400
committerChristopher Faylor <me@cgf.cx>2000-07-01 08:26:45 +0400
commit72f8054fad05e3dce132498f37d04391bdc63e51 (patch)
tree0cba5b9bce101b6d2b58f7977eb6bcfde7a48ac4 /winsup/cygwin/lib
parent8c6b7d8a1599235f05f06a4119ae95321a0de10f (diff)
* dcrt0.cc (_dll_crt0): Renamed from dll_crt0 ().
* winsup.h: Accomodate above change. * cygwin.din: Ditto. * lib/cygwin_crt0.c: Ditto.
Diffstat (limited to 'winsup/cygwin/lib')
-rw-r--r--winsup/cygwin/lib/cygwin_crt0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/lib/cygwin_crt0.c b/winsup/cygwin/lib/cygwin_crt0.c
index deed1a054..f0656a171 100644
--- a/winsup/cygwin/lib/cygwin_crt0.c
+++ b/winsup/cygwin/lib/cygwin_crt0.c
@@ -11,7 +11,7 @@ details. */
#include <windows.h>
#include "crt0.h"
-extern void __stdcall dll_crt0 (void) __declspec (dllimport);
+extern void __stdcall _dll_crt0 (void) __declspec (dllimport) __attribute ((noreturn));
/* for main module */
void
@@ -20,5 +20,5 @@ cygwin_crt0 (MainFunc f)
_cygwin_crt0_common (f);
/* Jump into the dll. */
- dll_crt0 ();
+ _dll_crt0 ();
}