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 /lib/libc/rpc/auth_none.c | |
parent | 1254d034839decf8d1e15dbb49da544aa6dc0a1e (diff) |
alphabetize function forward decls for prettiness
Diffstat (limited to 'lib/libc/rpc/auth_none.c')
-rw-r--r-- | lib/libc/rpc/auth_none.c | 6 |
1 files changed, 3 insertions, 3 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, |