diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-20 23:45:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-20 23:45:42 +0000 |
commit | 526950c173523ab55732b9d26fca0e83718982c0 (patch) | |
tree | 9b424984a75157273fcfaa992cd1b43d8c532403 | |
parent | 1254d034839decf8d1e15dbb49da544aa6dc0a1e (diff) |
alphabetize function forward decls for prettiness
-rw-r--r-- | lib/libc/rpc/auth_none.c | 6 | ||||
-rw-r--r-- | lib/libc/rpc/auth_unix.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/rpc/auth_none.c b/lib/libc/rpc/auth_none.c index 354b30eb151..fb1745efe6b 100644 --- a/lib/libc/rpc/auth_none.c +++ b/lib/libc/rpc/auth_none.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: auth_none.c,v 1.3 1996/08/19 08:31:20 tholo Exp $"; +static char *rcsid = "$OpenBSD: auth_none.c,v 1.4 1998/12/20 23:45:41 millert Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -48,11 +48,11 @@ static char *rcsid = "$OpenBSD: auth_none.c,v 1.3 1996/08/19 08:31:20 tholo Exp /* * Authenticator operations routines */ -static void authnone_verf(); static void authnone_destroy(); +static void authnone_verf(); static bool_t authnone_marshal(); -static bool_t authnone_validate(); static bool_t authnone_refresh(); +static bool_t authnone_validate(); static struct auth_ops ops = { authnone_verf, diff --git a/lib/libc/rpc/auth_unix.c b/lib/libc/rpc/auth_unix.c index 7b79976052a..fec29c28f5d 100644 --- a/lib/libc/rpc/auth_unix.c +++ b/lib/libc/rpc/auth_unix.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: auth_unix.c,v 1.10 1998/07/09 06:11:56 deraadt Exp $"; +static char *rcsid = "$OpenBSD: auth_unix.c,v 1.11 1998/12/20 23:45:41 millert Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -56,11 +56,11 @@ static char *rcsid = "$OpenBSD: auth_unix.c,v 1.10 1998/07/09 06:11:56 deraadt E /* * Unix authenticator operations vector */ +static void authunix_destroy(); static void authunix_nextverf(); static bool_t authunix_marshal(); -static bool_t authunix_validate(); static bool_t authunix_refresh(); -static void authunix_destroy(); +static bool_t authunix_validate(); static struct auth_ops auth_unix_ops = { authunix_nextverf, |