aboutsummaryrefslogtreecommitdiff
path: root/migcom.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-07-19 00:18:18 +0000
committerRoland McGrath <roland@gnu.org>1998-07-19 00:18:18 +0000
commitb2f4f81c0af08e3599965bad9d7854c9ef09dc94 (patch)
tree3ed7bc728a542f4dbc28f684cb53fa2a4549e133 /migcom.c
parent09b423d3bf0f60abb65fd04d0b808de9f2f1feee (diff)
downloadmig-b2f4f81c0af08e3599965bad9d7854c9ef09dc94.tar.gz
mig-b2f4f81c0af08e3599965bad9d7854c9ef09dc94.tar.bz2
mig-b2f4f81c0af08e3599965bad9d7854c9ef09dc94.zip
1998-07-18 Roland McGrath <roland@baalperazim.frob.com>
* migcom.c (main): Fix return type to int (not void), and use return.
Diffstat (limited to 'migcom.c')
-rw-r--r--migcom.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/migcom.c b/migcom.c
index bfd6724..14b9dd6 100644
--- a/migcom.c
+++ b/migcom.c
@@ -1,25 +1,25 @@
-/*
+/*
* Mach Operating System
* Copyright (c) 1993,1991,1990 Carnegie Mellon University
* All Rights Reserved.
- *
+ *
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
+ *
+ * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
+ *
* Carnegie Mellon requests users of this software to return to
- *
+ *
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
- *
+ *
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
@@ -28,10 +28,10 @@
* Switches are;
* -[v,Q] verbose or not quiet: prints out type
* and routine information as mig runs.
- * -[V,q] not verbose or quiet : don't print
+ * -[V,q] not verbose or quiet : don't print
* information during compilation
* (this is the default)
- * -[r,R] do or don't use rpc calls instead of
+ * -[r,R] do or don't use rpc calls instead of
* send/receive pairs. Default is -r.
* -[s,S] generate symbol table or not: generate a
* table of rpc-name, number, routine triplets
@@ -67,7 +67,7 @@
* header.c user.c and server.c are called sequentially. These
* do some code generation directly and also call the routines
* in utils.c for common (parameterized) code generation.
- *
+ *
*/
#include <stdio.h>
@@ -84,9 +84,9 @@ static void
parseArgs(int argc, char **argv)
{
while (--argc > 0)
- if ((++argv)[0][0] == '-')
+ if ((++argv)[0][0] == '-')
{
- switch (argv[0][1])
+ switch (argv[0][1])
{
case 'q':
BeQuiet = TRUE;
@@ -189,7 +189,7 @@ parseArgs(int argc, char **argv)
fatal("bad argument: '%s'", *argv);
}
-void
+int
main(int argc, char **argv)
{
FILE *uheader, *server, *user;
@@ -275,7 +275,7 @@ main(int argc, char **argv)
if (BeVerbose)
printf("done.\n");
- exit(0);
+ return 0;
}
static FILE *