* dcrt0.cc (_dll_crt0): Renamed from dll_crt0 ().

* winsup.h: Accomodate above change.
* cygwin.din: Ditto.
* lib/cygwin_crt0.c: Ditto.
This commit is contained in:
Christopher Faylor
2000-07-01 04:26:45 +00:00
parent 8c6b7d8a15
commit 72f8054fad
5 changed files with 14 additions and 7 deletions

View File

@ -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 ();
}