whitespace cleanup
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>
Tue, 31 Dec 2002 11:23:50 +0000 (11:23 +0000)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>
Tue, 31 Dec 2002 11:23:50 +0000 (11:23 +0000)
PC/os2emx/dllentry.c

index ca3081df84aeff65cbd0fdacffd9c421d84904f6..ea8d366eb60adb91eedc2473ac2625b5d64d8b7f 100644 (file)
@@ -19,20 +19,25 @@ extern void __ctordtorTerm (void);
 
 unsigned long _DLL_InitTerm (unsigned long mod_handle, unsigned long flag)
 {
-  switch (flag)
-  {
-    case 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;
-  }
+       switch (flag)
+       {
+               case 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;
+       }
 }