diff options
author | 1998-12-20 23:45:41 +0000 | |
---|---|---|
committer | 1998-12-20 23:45:41 +0000 | |
commit | 15b075a6a6e1305030397a7ddf3e280528069be3 (patch) | |
tree | 2f00fcb394aa141fc2cd28d86daca4031a8dce11 /lib/libc/rpc/auth_unix.c | |
parent | pull in rpc/pmap_clnt.h to silence gcc and prototype xdr_opaque_auth for the same reason (diff) | |
download | wireguard-openbsd-15b075a6a6e1305030397a7ddf3e280528069be3.tar.xz wireguard-openbsd-15b075a6a6e1305030397a7ddf3e280528069be3.zip |
alphabetize function forward decls for prettiness
Diffstat (limited to 'lib/libc/rpc/auth_unix.c')
-rw-r--r-- | lib/libc/rpc/auth_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
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, |