aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sysdep.c
diff options
context:
space:
mode:
authorLaurent Guerby <guerby@acm.org>2001-11-25 13:09:31 +0000
committerLaurent Guerby <guerby@gcc.gnu.org>2001-11-25 13:09:31 +0000
commit92fa4733ab20d5f4a8e9eb7c6f5c924427677549 (patch)
tree856897e8dce07ea175c0f0491bdb214370464426 /gcc/ada/sysdep.c
parentd133777f5d4f838c9828865086192ed55a3d1c57 (diff)
downloadgcc-92fa4733ab20d5f4a8e9eb7c6f5c924427677549.zip
gcc-92fa4733ab20d5f4a8e9eb7c6f5c924427677549.tar.gz
gcc-92fa4733ab20d5f4a8e9eb7c6f5c924427677549.tar.bz2
sysdep.c (rts_get_*): Fix style.
2001-11-25 Laurent Guerby <guerby@acm.org> * sysdep.c (rts_get_*): Fix style. From-SVN: r47315
Diffstat (limited to 'gcc/ada/sysdep.c')
-rw-r--r--gcc/ada/sysdep.c29
1 files changed, 24 insertions, 5 deletions
diff --git a/gcc/ada/sysdep.c b/gcc/ada/sysdep.c
index ed8988a..2ab5807 100644
--- a/gcc/ada/sysdep.c
+++ b/gcc/ada/sysdep.c
@@ -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