Kaydet (Commit) d65778a9 authored tarafından Andrew MacIntyre's avatar Andrew MacIntyre

whitespace cleanup

üst 7c90a895
......@@ -22,16 +22,21 @@ unsigned long _DLL_InitTerm (unsigned long mod_handle, unsigned long flag)
switch (flag)
{
case 0:
if (_CRT_init ()) return 0;
if (_CRT_init ())
return 0;
__ctordtorInit ();
/* Ignore fatal signals */
signal (SIGSEGV, SIG_IGN);
signal (SIGFPE, SIG_IGN);
return 1;
case 1:
__ctordtorTerm ();
_CRT_term ();
return 1;
default:
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment