]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
sysdep.c (rts_get_*): Fix style.
authorLaurent Guerby <guerby@acm.org>
Sun, 25 Nov 2001 13:09:31 +0000 (13:09 +0000)
committerLaurent Guerby <guerby@gcc.gnu.org>
Sun, 25 Nov 2001 13:09:31 +0000 (13:09 +0000)
2001-11-25  Laurent Guerby  <guerby@acm.org>

* sysdep.c (rts_get_*): Fix style.

From-SVN: r47315

gcc/ada/ChangeLog
gcc/ada/sysdep.c

index 7a69d211e99a439e0c81dfca7ef9c11afdbcbaca..07f34f15dc9600ce4caa0105e548c82774df91b8 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-25  Laurent Guerby  <guerby@acm.org>
+
+       * sysdep.c (rts_get_*): Fix style.
+
 2001-11-19  Laurent Guerby  <guerby@acm.org>
 
        * Makefile.in (INCLUDES_FOR_SUBDIR): Remove redundant system include
index ed8988a8f5a9eea2dba53b7546915a8036ef9614..2ab58074c02a49ce3e104545afa83560e188d413 100644 (file)
@@ -6,7 +6,7 @@
  *                                                                          *
  *                          C Implementation File                           *
  *                                                                          *
- *                            $Revision: 1.3 $
+ *                            $Revision: 1.4 $
  *                                                                          *
  *          Copyright (C) 1992-2001 Free Software Foundation, Inc.          *
  *                                                                          *
@@ -526,10 +526,29 @@ char *rts_get_hPrevInstance PARAMS ((void));
 char *rts_get_lpCommandLine PARAMS ((void));
 int   rts_get_nShowCmd      PARAMS ((void));
 
-char *rts_get_hInstance     () { return (GetModuleHandleA (0)); }
-char *rts_get_hPrevInstance () { return (0); }
-char *rts_get_lpCommandLine () { return (GetCommandLineA ()); }
-int   rts_get_nShowCmd      () { return (1); }
+char *
+rts_get_hInstance () 
+{ 
+  return GetModuleHandleA (0); 
+}
+
+char *
+rts_get_hPrevInstance () 
+{ 
+  return 0; 
+}
+
+char *
+rts_get_lpCommandLine () 
+{ 
+  return GetCommandLineA (); 
+}
+
+int   
+rts_get_nShowCmd () 
+{ 
+  return 1; 
+}
 
 #endif /* WINNT */
 #ifdef VMS