diff options
author | Roland McGrath <roland@gnu.org> | 1998-07-20 06:56:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-07-20 06:56:48 +0000 |
commit | 904537365266ddea9e45dcef10080f42fabd4dbe (patch) | |
tree | 9d970387fb913454db0917c5a56eed70096b948a /utils/ids.c | |
parent | 9e193425ea6e3161f0a752a3075622209ac70880 (diff) |
1998-07-20 Roland McGrath <roland@baalperazim.frob.com>
* ps.c (main): Fix return type to int, and use return.
* ids.c (main): Likewise.
* w.c (main): Likewise.
* login.c (main): Likewise.
* settrans.c (main): Likewise.
* showtrans.c (main): Likewise.
* fsysopts.c (main): Likewise.
* storeinfo.c (main): Likewise.
Diffstat (limited to 'utils/ids.c')
-rw-r--r-- | utils/ids.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/ids.c b/utils/ids.c index 8b867630..f8ad22c5 100644 --- a/utils/ids.c +++ b/utils/ids.c @@ -1,6 +1,6 @@ /* Show all hurd ids - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -47,7 +47,7 @@ static char *doc = "Show hurd uids/gids." /* ---------------------------------------------------------------- */ -void +int main(int argc, char *argv[]) { error_t err; @@ -192,5 +192,5 @@ main(int argc, char *argv[]) show_eff ? "available" : 0); } - exit (0); + return 0; } |