* dcrt0.cc (dll_crt0_0): Remove unneeded __stdcall decoration.

* init.cc: Reflect change to dll_crt0_0 in declaration.
This commit is contained in:
Christopher Faylor 2011-08-18 15:59:16 +00:00
parent 8f19b4b64f
commit 6072b95eeb
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-08-18 Christopher Faylor <me.cygwin2011@cgf.cx>
* dcrt0.cc (dll_crt0_0): Remove unneeded __stdcall decoration.
* init.cc: Reflect change to dll_crt0_0 in declaration.
2011-08-18 Corinna Vinschen <corinna@vinschen.de>
* dtable.cc (dtable::get_debugger_info): Add missing braces.

View File

@ -649,7 +649,7 @@ init_windows_system_directory ()
windows_system_directory[windows_system_directory_length] = L'\0';
}
void __stdcall
void
dll_crt0_0 ()
{
init_windows_system_directory ();

View File

@ -110,7 +110,7 @@ respawn_wow64_process ()
}
}
extern void __stdcall dll_crt0_0 ();
void dll_crt0_0 ();
extern "C" BOOL WINAPI
dll_entry (HANDLE h, DWORD reason, void *static_load)