diff options
author | Roland McGrath <roland@gnu.org> | 1998-07-20 06:52:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-07-20 06:52:25 +0000 |
commit | 15b92b3a0a0c5b124e1ec7b2c107f625acdc9a67 (patch) | |
tree | 2904869646bc3d4f337a91838e880de0d208350a /trans/fwd.c | |
parent | a39b14357bcf19663de3994d7a4068ecea8a6a64 (diff) |
1998-07-20 Roland McGrath <roland@baalperazim.frob.com>
* firmlink.c (main): Fix return type to int, and use return.
* fwd.c (main): Likewise.
* new-fifo.c (main): Likewise.
* magic.c (main): Likewise.
* fifo.c (main): Likewise.
* null.c (main): Likewise.
Diffstat (limited to 'trans/fwd.c')
-rw-r--r-- | trans/fwd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/trans/fwd.c b/trans/fwd.c index 6b90d333..c36028e0 100644 --- a/trans/fwd.c +++ b/trans/fwd.c @@ -4,7 +4,7 @@ and forward the request to the server if they find one, otherwise doing the translation themselves. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -26,7 +26,7 @@ #include <stdio.h> #include <hurd/fshelp.h> -void +int main (int argc, char **argv) { error_t err; @@ -47,5 +47,5 @@ main (int argc, char **argv) if (err) error (3, err, "%s", argv[1]); - exit (0); + return 0; } |