diff options
author | Roland McGrath <roland@gnu.org> | 1998-07-20 07:11:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-07-20 07:11:54 +0000 |
commit | c14711b67a3cc289c73a37ec207b9c615df36ce6 (patch) | |
tree | f30f7f847cc0e1a1fa308512c7e5fd145948e64d /utils/addauth.c | |
parent | 4fca97739b60e2eed148bcb9b2002d694a3ce60d (diff) | |
download | hurd-c14711b67a3cc289c73a37ec207b9c615df36ce6.tar.gz hurd-c14711b67a3cc289c73a37ec207b9c615df36ce6.tar.bz2 hurd-c14711b67a3cc289c73a37ec207b9c615df36ce6.zip |
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.
* unsu.c (main): Likewise.
* setauth.c (main): Likewise.
* rmauth.c (main): Likewise.
* addauth.c (main): Likewise.
Diffstat (limited to 'utils/addauth.c')
-rw-r--r-- | utils/addauth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/addauth.c b/utils/addauth.c index 7c199989..0932a33f 100644 --- a/utils/addauth.c +++ b/utils/addauth.c @@ -1,6 +1,6 @@ /* Add authentication to selected processes - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -41,7 +41,7 @@ static char doc[] = extern error_t get_nonsugid_ids (struct idvec *uids, struct idvec *gids); -void +int main (int argc, char *argv[]) { int i; @@ -96,5 +96,5 @@ main (int argc, char *argv[]) } } - exit (0); + return 0; } |