diff options
Diffstat (limited to 'lib/libc/rpc/auth_des.c')
-rw-r--r-- | lib/libc/rpc/auth_des.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/rpc/auth_des.c b/lib/libc/rpc/auth_des.c index c771f31afb9e..a8f3b2768665 100644 --- a/lib/libc/rpc/auth_des.c +++ b/lib/libc/rpc/auth_des.c @@ -1,4 +1,3 @@ - /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for * unrestricted use provided that this legend is included on all tape @@ -33,6 +32,7 @@ /* * auth_des.c, client-side implementation of DES authentication */ + #include "namespace.h" #include "reentrant.h" #include <err.h> @@ -55,8 +55,9 @@ #if defined(LIBC_SCCS) && !defined(lint) /* from: static char sccsid[] = "@(#)auth_des.c 2.2 88/07/29 4.0 RPCSRC; from 1.9 88/02/08 SMI"; */ -static const char rcsid[] = "$FreeBSD$"; #endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #define USEC_PER_SEC 1000000 #define RTIME_TIMEOUT 5 /* seconds to wait for sync */ |