diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-03 21:06:42 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-03 21:06:42 +0000 |
commit | b728350ee67c01f96c3c5121774536fee81ad176 (patch) | |
tree | f908d178ab0f2ab51334f4e63465f30c284a3a41 /usr.sbin/ypbind | |
parent | 6f0a94a9f184c3f2ffef1ee177959042ed1cb2da (diff) | |
download | src-test2-b728350ee67c01f96c3c5121774536fee81ad176.tar.gz src-test2-b728350ee67c01f96c3c5121774536fee81ad176.zip |
Notes
Diffstat (limited to 'usr.sbin/ypbind')
-rw-r--r-- | usr.sbin/ypbind/yp_ping.c | 6 | ||||
-rw-r--r-- | usr.sbin/ypbind/ypbind.c | 6 |
2 files changed, 5 insertions, 7 deletions
diff --git a/usr.sbin/ypbind/yp_ping.c b/usr.sbin/ypbind/yp_ping.c index 807e706e7fba..1806c3c0f122 100644 --- a/usr.sbin/ypbind/yp_ping.c +++ b/usr.sbin/ypbind/yp_ping.c @@ -59,14 +59,14 @@ * Mountain View, California 94043 */ -#ifndef lint #if 0 +#ifndef lint static char *sccsid = "@(#)from: clnt_udp.c 1.39 87/08/11 Copyr 1984 Sun Micro"; static char *sccsid = "@(#)from: clnt_udp.c 2.2 88/08/01 4.0 RPCSRC"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * clnt_udp.c, Implements a UDP/IP based, client side RPC. diff --git a/usr.sbin/ypbind/ypbind.c b/usr.sbin/ypbind/ypbind.c index 3000e7ff285b..bec3b9e0c3f1 100644 --- a/usr.sbin/ypbind/ypbind.c +++ b/usr.sbin/ypbind/ypbind.c @@ -27,10 +27,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/types.h> |