diff --git a/lib/compat/Makefile b/lib/compat/Makefile index 73a612ac3d7e..4de61092e2a5 100644 --- a/lib/compat/Makefile +++ b/lib/compat/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ SUBDIR= diff --git a/lib/compat/Makefile.inc b/lib/compat/Makefile.inc index 74e177f95fed..5201d4a7dee7 100644 --- a/lib/compat/Makefile.inc +++ b/lib/compat/Makefile.inc @@ -1,3 +1,3 @@ -# $FreeBSD$ +# $Id$ LIBCOMPATDIR?= ${LIBDIR}/compat diff --git a/lib/compat/compat1x/Makefile b/lib/compat/compat1x/Makefile index d83e938f5a01..51e68077d839 100644 --- a/lib/compat/compat1x/Makefile +++ b/lib/compat/compat1x/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ DISTRIBUTION= compat1x diff --git a/lib/compat/compat20/Makefile b/lib/compat/compat20/Makefile index 0df10a3f6327..a9849be01d10 100644 --- a/lib/compat/compat20/Makefile +++ b/lib/compat/compat20/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ DISTRIBUTION= compat20 diff --git a/lib/compat/compat21/Makefile b/lib/compat/compat21/Makefile index caa24c6f5e56..50e2f230b218 100644 --- a/lib/compat/compat21/Makefile +++ b/lib/compat/compat21/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ DISTRIBUTION= compat21 diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index be5027ded17f..1b3e61f48679 100644 --- a/lib/csu/i386/Makefile +++ b/lib/csu/i386/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.6 (Berkeley) 5/22/91 -# $FreeBSD$ +# $Id$ CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o diff --git a/lib/csu/i386/c++rt0.c b/lib/csu/i386/c++rt0.c index 3e853ac4ca08..94fa5c59b2b2 100644 --- a/lib/csu/i386/c++rt0.c +++ b/lib/csu/i386/c++rt0.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ /* diff --git a/lib/csu/i386/crt0.c b/lib/csu/i386/crt0.c index ef76aab5c1d1..5f7e4ab724ce 100644 --- a/lib/csu/i386/crt0.c +++ b/lib/csu/i386/crt0.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/amd64/SYS.h b/lib/libc/amd64/SYS.h index a1bcab00e8b7..2f51e6379d17 100644 --- a/lib/libc/amd64/SYS.h +++ b/lib/libc/amd64/SYS.h @@ -35,7 +35,7 @@ * * from: @(#)SYS.h 5.5 (Berkeley) 5/7/91 * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/amd64/gen/Makefile.inc b/lib/libc/amd64/gen/Makefile.inc index d57a794571f4..457d5c3c4f4a 100644 --- a/lib/libc/amd64/gen/Makefile.inc +++ b/lib/libc/amd64/gen/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= isinf.c infinity.c SRCS+= _setjmp.S alloca.S fabs.S ldexp.c modf.S setjmp.S sigsetjmp.S diff --git a/lib/libc/amd64/gen/_setjmp.S b/lib/libc/amd64/gen/_setjmp.S index 96ea79cc511a..62259cee9320 100644 --- a/lib/libc/amd64/gen/_setjmp.S +++ b/lib/libc/amd64/gen/_setjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/amd64/gen/frexp.c b/lib/libc/amd64/gen/frexp.c index 1de32db1dcb7..aba48025ff5a 100644 --- a/lib/libc/amd64/gen/frexp.c +++ b/lib/libc/amd64/gen/frexp.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/amd64/gen/infinity.c b/lib/libc/amd64/gen/infinity.c index 3ba73067bb77..e46f676a3f6d 100644 --- a/lib/libc/amd64/gen/infinity.c +++ b/lib/libc/amd64/gen/infinity.c @@ -1,6 +1,6 @@ /* * infinity.c - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/amd64/gen/isinf.c b/lib/libc/amd64/gen/isinf.c index b3f8f925ef89..a796dcf90697 100644 --- a/lib/libc/amd64/gen/isinf.c +++ b/lib/libc/amd64/gen/isinf.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/amd64/gen/ldexp.c b/lib/libc/amd64/gen/ldexp.c index ad3242c17368..8b63f528dc8c 100644 --- a/lib/libc/amd64/gen/ldexp.c +++ b/lib/libc/amd64/gen/ldexp.c @@ -33,11 +33,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/amd64/gen/setjmp.S b/lib/libc/amd64/gen/setjmp.S index 04728cacad6f..6525a1680fcb 100644 --- a/lib/libc/amd64/gen/setjmp.S +++ b/lib/libc/amd64/gen/setjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/amd64/gen/sigsetjmp.S b/lib/libc/amd64/gen/sigsetjmp.S index 6ad2353a1f9e..122059855073 100644 --- a/lib/libc/amd64/gen/sigsetjmp.S +++ b/lib/libc/amd64/gen/sigsetjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/amd64/net/Makefile.inc b/lib/libc/amd64/net/Makefile.inc index 0d532ff6b962..dff7fd1066b7 100644 --- a/lib/libc/amd64/net/Makefile.inc +++ b/lib/libc/amd64/net/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= htonl.S htons.S ntohl.S ntohs.S diff --git a/lib/libc/amd64/net/htonl.S b/lib/libc/amd64/net/htonl.S index a0a76708179b..095c40a6fa73 100644 --- a/lib/libc/amd64/net/htonl.S +++ b/lib/libc/amd64/net/htonl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* netorder = htonl(hostorder) */ diff --git a/lib/libc/amd64/net/htons.S b/lib/libc/amd64/net/htons.S index 66084a864e59..238dfc24d36b 100644 --- a/lib/libc/amd64/net/htons.S +++ b/lib/libc/amd64/net/htons.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* netorder = htons(hostorder) */ diff --git a/lib/libc/amd64/net/ntohl.S b/lib/libc/amd64/net/ntohl.S index 1f01ad9e3819..5af5008c437b 100644 --- a/lib/libc/amd64/net/ntohl.S +++ b/lib/libc/amd64/net/ntohl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohl(netorder) */ diff --git a/lib/libc/amd64/net/ntohs.S b/lib/libc/amd64/net/ntohs.S index 184a1e65fde2..4bed4a2c19c8 100644 --- a/lib/libc/amd64/net/ntohs.S +++ b/lib/libc/amd64/net/ntohs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohs(netorder) */ diff --git a/lib/libc/amd64/sys/Makefile.inc b/lib/libc/amd64/sys/Makefile.inc index 8aaa3c479582..6774dd3425a9 100644 --- a/lib/libc/amd64/sys/Makefile.inc +++ b/lib/libc/amd64/sys/Makefile.inc @@ -1,5 +1,5 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/${MACHINE}/sys diff --git a/lib/libc/amd64/sys/brk.S b/lib/libc/amd64/sys/brk.S index b306bc577af7..4fdf0c637146 100644 --- a/lib/libc/amd64/sys/brk.S +++ b/lib/libc/amd64/sys/brk.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/cerror.S b/lib/libc/amd64/sys/cerror.S index bfa842e17a42..2d8f93517e64 100644 --- a/lib/libc/amd64/sys/cerror.S +++ b/lib/libc/amd64/sys/cerror.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/exect.S b/lib/libc/amd64/sys/exect.S index 7a05291e1b0f..af0d2ee391a3 100644 --- a/lib/libc/amd64/sys/exect.S +++ b/lib/libc/amd64/sys/exect.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/pipe.S b/lib/libc/amd64/sys/pipe.S index 1cc923b87a3e..637b86f9f0b1 100644 --- a/lib/libc/amd64/sys/pipe.S +++ b/lib/libc/amd64/sys/pipe.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/ptrace.S b/lib/libc/amd64/sys/ptrace.S index 07d2c8753b43..018a02cf94ed 100644 --- a/lib/libc/amd64/sys/ptrace.S +++ b/lib/libc/amd64/sys/ptrace.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/reboot.S b/lib/libc/amd64/sys/reboot.S index 93fa431bf51a..70049b249b1d 100644 --- a/lib/libc/amd64/sys/reboot.S +++ b/lib/libc/amd64/sys/reboot.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/sbrk.S b/lib/libc/amd64/sys/sbrk.S index 6bf587b211e5..a3afd8907900 100644 --- a/lib/libc/amd64/sys/sbrk.S +++ b/lib/libc/amd64/sys/sbrk.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/setlogin.S b/lib/libc/amd64/sys/setlogin.S index 8e04747477b3..7bcf3bd886b3 100644 --- a/lib/libc/amd64/sys/setlogin.S +++ b/lib/libc/amd64/sys/setlogin.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/sigreturn.S b/lib/libc/amd64/sys/sigreturn.S index e276594a988b..65deb40ab667 100644 --- a/lib/libc/amd64/sys/sigreturn.S +++ b/lib/libc/amd64/sys/sigreturn.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/amd64/sys/vfork.S b/lib/libc/amd64/sys/vfork.S index de00199945ab..e4ed257d3c33 100644 --- a/lib/libc/amd64/sys/vfork.S +++ b/lib/libc/amd64/sys/vfork.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/db/man/mpool.3 b/lib/libc/db/man/mpool.3 index 36b3a5e2af56..e625dc4514b5 100644 --- a/lib/libc/db/man/mpool.3 +++ b/lib/libc/db/man/mpool.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mpool.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .TH MPOOL 3 "June 4, 1993" .UC 7 diff --git a/lib/libc/db/mpool/mpool.libtp b/lib/libc/db/mpool/mpool.libtp index bcd827dce29d..dbb046919c04 100644 --- a/lib/libc/db/mpool/mpool.libtp +++ b/lib/libc/db/mpool/mpool.libtp @@ -1,6 +1,6 @@ /****************************************************************************** -VERSION $FreeBSD$ +VERSION $Id$ PACKAGE: User Level Shared Memory Manager DESCRIPTION: diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index a750f3693f5b..4956d06d1bb9 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -1,5 +1,5 @@ # From: @(#)Makefile.inc 8.3 (Berkeley) 4/16/94 -# $FreeBSD$ +# $Id$ # machine-independent gen sources .PATH: ${.CURDIR}/${MACHINE}/gen ${.CURDIR}/gen diff --git a/lib/libc/gen/__xuname.c b/lib/libc/gen/__xuname.c index c807f73da3d5..25431d4f9a9b 100644 --- a/lib/libc/gen/__xuname.c +++ b/lib/libc/gen/__xuname.c @@ -34,7 +34,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char sccsid[] = "From: @(#)uname.c 8.1 (Berkeley) 1/4/94";*/ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/config.c b/lib/libc/gen/config.c index 8d0d591a91bb..2d1ed44b4f44 100644 --- a/lib/libc/gen/config.c +++ b/lib/libc/gen/config.c @@ -6,12 +6,12 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/gen/config_open.3 b/lib/libc/gen/config_open.3 index 906859437f25..a2ef7079944c 100644 --- a/lib/libc/gen/config_open.3 +++ b/lib/libc/gen/config_open.3 @@ -5,7 +5,7 @@ .\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp .\" ---------------------------------------------------------------------------- .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd November 13, 1994 .Dt config_open 3 diff --git a/lib/libc/gen/disklabel.c b/lib/libc/gen/disklabel.c index 45e354c2720f..ac2894e3bd07 100644 --- a/lib/libc/gen/disklabel.c +++ b/lib/libc/gen/disklabel.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)disklabel.c 8.2 (Berkeley) 5/3/95"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* not lint */ #include diff --git a/lib/libc/gen/err.3 b/lib/libc/gen/err.3 index 162ffe24ae53..b2f96fc60580 100644 --- a/lib/libc/gen/err.3 +++ b/lib/libc/gen/err.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)err.3 8.1 (Berkeley) 6/9/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 13, 1995 .Dt ERR 3 diff --git a/lib/libc/gen/ftok.3 b/lib/libc/gen/ftok.3 index 362f13f61b43..15e318aef5d9 100644 --- a/lib/libc/gen/ftok.3 +++ b/lib/libc/gen/ftok.3 @@ -23,7 +23,7 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .Dd June 24, 1994 .Os .Dt ftok 3 diff --git a/lib/libc/gen/ftok.c b/lib/libc/gen/ftok.c index 24cfe7d601e0..4f5972521520 100644 --- a/lib/libc/gen/ftok.c +++ b/lib/libc/gen/ftok.c @@ -26,7 +26,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/getbootfile.3 b/lib/libc/gen/getbootfile.3 index 7f1dae154feb..3c2e78321ad4 100644 --- a/lib/libc/gen/getbootfile.3 +++ b/lib/libc/gen/getbootfile.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)gethostname.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 23, 1994 .Dt GETBOOTFILE 3 diff --git a/lib/libc/gen/getbootfile.c b/lib/libc/gen/getbootfile.c index 74152d7c4db2..5b293a7255f1 100644 --- a/lib/libc/gen/getbootfile.c +++ b/lib/libc/gen/getbootfile.c @@ -34,7 +34,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char sccsid[] = "From: @(#)gethostname.c 8.1 (Berkeley) 6/4/93";*/ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/getdomainname.3 b/lib/libc/gen/getdomainname.3 index ce2f94af0217..75214d2270da 100644 --- a/lib/libc/gen/getdomainname.3 +++ b/lib/libc/gen/getdomainname.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)gethostname.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1994 .Dt GETDOMAINNAME 3 diff --git a/lib/libc/gen/getdomainname.c b/lib/libc/gen/getdomainname.c index aafb01074559..ba048032fd20 100644 --- a/lib/libc/gen/getdomainname.c +++ b/lib/libc/gen/getdomainname.c @@ -36,7 +36,7 @@ static char sccsid[] = "From: @(#)gethostname.c 8.1 (Berkeley) 6/4/93"; */ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/getgrent.3 b/lib/libc/gen/getgrent.3 index fbdf909b69f1..ad3617d6b4e2 100644 --- a/lib/libc/gen/getgrent.3 +++ b/lib/libc/gen/getgrent.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)getgrent.3 8.2 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 29, 1994 .Dt GETGRENT 3 diff --git a/lib/libc/gen/getosreldate.c b/lib/libc/gen/getosreldate.c index b6e91f49c349..808e16b56e70 100644 --- a/lib/libc/gen/getosreldate.c +++ b/lib/libc/gen/getosreldate.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)gethostid.c 8.1 (Berkeley) 6/2/93"; */ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/getvfsent.3 b/lib/libc/gen/getvfsent.3 index 512a0902b64b..afecf43ab9bf 100644 --- a/lib/libc/gen/getvfsent.3 +++ b/lib/libc/gen/getvfsent.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" Written by Garrett A. Wollman, September 1994. .\" This manual page is in the public domain. .\" diff --git a/lib/libc/gen/ntp_gettime.c b/lib/libc/gen/ntp_gettime.c index e77caafeb4a3..1f18337870f2 100644 --- a/lib/libc/gen/ntp_gettime.c +++ b/lib/libc/gen/ntp_gettime.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/setdomainname.c b/lib/libc/gen/setdomainname.c index 8d461662f366..b7021a5db3a2 100644 --- a/lib/libc/gen/setdomainname.c +++ b/lib/libc/gen/setdomainname.c @@ -36,7 +36,7 @@ static char sccsid[] = "From: @(#)sethostname.c 8.1 (Berkeley) 6/4/93"; */ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/setproctitle.3 b/lib/libc/gen/setproctitle.3 index f4cc850ef8ef..894b9335839b 100644 --- a/lib/libc/gen/setproctitle.3 +++ b/lib/libc/gen/setproctitle.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .\" The following requests are required for all man pages. .Dd December 16, 1995 diff --git a/lib/libc/gen/setproctitle.c b/lib/libc/gen/setproctitle.c index cf3069b18f5c..ba21d1c01b8a 100644 --- a/lib/libc/gen/setproctitle.c +++ b/lib/libc/gen/setproctitle.c @@ -14,7 +14,7 @@ * 3. Absolutely no warranty of function or purpose is made by the author * Peter Wemm. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/gen/shmat.c b/lib/libc/gen/shmat.c index 45b91430c944..1cd07795065f 100644 --- a/lib/libc/gen/shmat.c +++ b/lib/libc/gen/shmat.c @@ -1,5 +1,5 @@ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/shmctl.c b/lib/libc/gen/shmctl.c index eae9fbb6a23f..b0585fdc9530 100644 --- a/lib/libc/gen/shmctl.c +++ b/lib/libc/gen/shmctl.c @@ -1,5 +1,5 @@ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/shmdt.c b/lib/libc/gen/shmdt.c index f39ad183f2ab..feae3d114d87 100644 --- a/lib/libc/gen/shmdt.c +++ b/lib/libc/gen/shmdt.c @@ -1,5 +1,5 @@ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/shmget.c b/lib/libc/gen/shmget.c index 8976d1c0d6d4..011951163541 100644 --- a/lib/libc/gen/shmget.c +++ b/lib/libc/gen/shmget.c @@ -1,5 +1,5 @@ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/syslog.c b/lib/libc/gen/syslog.c index 40e44e944b75..0f3817ccbd7e 100644 --- a/lib/libc/gen/syslog.c +++ b/lib/libc/gen/syslog.c @@ -36,7 +36,7 @@ static char sccsid[] = "From: @(#)syslog.c 8.4 (Berkeley) 3/18/94"; */ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/ualarm.3 b/lib/libc/gen/ualarm.3 index b64ed967462f..958dda59d421 100644 --- a/lib/libc/gen/ualarm.3 +++ b/lib/libc/gen/ualarm.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)ualarm.3 8.2 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt UALARM 3 diff --git a/lib/libc/gen/uname.c b/lib/libc/gen/uname.c index c807f73da3d5..25431d4f9a9b 100644 --- a/lib/libc/gen/uname.c +++ b/lib/libc/gen/uname.c @@ -34,7 +34,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char sccsid[] = "From: @(#)uname.c 8.1 (Berkeley) 1/4/94";*/ static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/gen/vis.3 b/lib/libc/gen/vis.3 index 00794b006b97..edb664e229e7 100644 --- a/lib/libc/gen/vis.3 +++ b/lib/libc/gen/vis.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)vis.3 8.1 (Berkeley) 6/9/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 25, 1996 .Dt VIS 3 diff --git a/lib/libc/gmon/mcount.c b/lib/libc/gmon/mcount.c index ce30ec03582f..a48e558a3cce 100644 --- a/lib/libc/gmon/mcount.c +++ b/lib/libc/gmon/mcount.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif #include diff --git a/lib/libc/i386/DEFS.h b/lib/libc/i386/DEFS.h index 753215ee13c0..0849a11e6c1b 100644 --- a/lib/libc/i386/DEFS.h +++ b/lib/libc/i386/DEFS.h @@ -35,7 +35,7 @@ * * from: @(#)DEFS.h 5.1 (Berkeley) 4/23/90 * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/i386/SYS.h b/lib/libc/i386/SYS.h index a1bcab00e8b7..2f51e6379d17 100644 --- a/lib/libc/i386/SYS.h +++ b/lib/libc/i386/SYS.h @@ -35,7 +35,7 @@ * * from: @(#)SYS.h 5.5 (Berkeley) 5/7/91 * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/i386/gen/Makefile.inc b/lib/libc/i386/gen/Makefile.inc index d57a794571f4..457d5c3c4f4a 100644 --- a/lib/libc/i386/gen/Makefile.inc +++ b/lib/libc/i386/gen/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= isinf.c infinity.c SRCS+= _setjmp.S alloca.S fabs.S ldexp.c modf.S setjmp.S sigsetjmp.S diff --git a/lib/libc/i386/gen/_setjmp.S b/lib/libc/i386/gen/_setjmp.S index 96ea79cc511a..62259cee9320 100644 --- a/lib/libc/i386/gen/_setjmp.S +++ b/lib/libc/i386/gen/_setjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/i386/gen/alloca.S b/lib/libc/i386/gen/alloca.S index 4b3c3d1beb5d..f76b37bc1a15 100644 --- a/lib/libc/i386/gen/alloca.S +++ b/lib/libc/i386/gen/alloca.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* like alloc, but automatic automatic free in return */ diff --git a/lib/libc/i386/gen/fabs.S b/lib/libc/i386/gen/fabs.S index 89d60c31f3d2..5ae53705ffa6 100644 --- a/lib/libc/i386/gen/fabs.S +++ b/lib/libc/i386/gen/fabs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/gen/frexp.c b/lib/libc/i386/gen/frexp.c index 1de32db1dcb7..aba48025ff5a 100644 --- a/lib/libc/i386/gen/frexp.c +++ b/lib/libc/i386/gen/frexp.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/i386/gen/infinity.c b/lib/libc/i386/gen/infinity.c index 3ba73067bb77..e46f676a3f6d 100644 --- a/lib/libc/i386/gen/infinity.c +++ b/lib/libc/i386/gen/infinity.c @@ -1,6 +1,6 @@ /* * infinity.c - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/i386/gen/isinf.c b/lib/libc/i386/gen/isinf.c index b3f8f925ef89..a796dcf90697 100644 --- a/lib/libc/i386/gen/isinf.c +++ b/lib/libc/i386/gen/isinf.c @@ -30,11 +30,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/i386/gen/ldexp.c b/lib/libc/i386/gen/ldexp.c index ad3242c17368..8b63f528dc8c 100644 --- a/lib/libc/i386/gen/ldexp.c +++ b/lib/libc/i386/gen/ldexp.c @@ -33,11 +33,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/i386/gen/modf.S b/lib/libc/i386/gen/modf.S index 8f658e09d1fa..b457097c8257 100644 --- a/lib/libc/i386/gen/modf.S +++ b/lib/libc/i386/gen/modf.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/i386/gen/setjmp.S b/lib/libc/i386/gen/setjmp.S index 04728cacad6f..6525a1680fcb 100644 --- a/lib/libc/i386/gen/setjmp.S +++ b/lib/libc/i386/gen/setjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* diff --git a/lib/libc/i386/gen/sigsetjmp.S b/lib/libc/i386/gen/sigsetjmp.S index 6ad2353a1f9e..122059855073 100644 --- a/lib/libc/i386/gen/sigsetjmp.S +++ b/lib/libc/i386/gen/sigsetjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/net/Makefile.inc b/lib/libc/i386/net/Makefile.inc index 0d532ff6b962..dff7fd1066b7 100644 --- a/lib/libc/i386/net/Makefile.inc +++ b/lib/libc/i386/net/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= htonl.S htons.S ntohl.S ntohs.S diff --git a/lib/libc/i386/net/htonl.S b/lib/libc/i386/net/htonl.S index a0a76708179b..095c40a6fa73 100644 --- a/lib/libc/i386/net/htonl.S +++ b/lib/libc/i386/net/htonl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* netorder = htonl(hostorder) */ diff --git a/lib/libc/i386/net/htons.S b/lib/libc/i386/net/htons.S index 66084a864e59..238dfc24d36b 100644 --- a/lib/libc/i386/net/htons.S +++ b/lib/libc/i386/net/htons.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* netorder = htons(hostorder) */ diff --git a/lib/libc/i386/net/ntohl.S b/lib/libc/i386/net/ntohl.S index 1f01ad9e3819..5af5008c437b 100644 --- a/lib/libc/i386/net/ntohl.S +++ b/lib/libc/i386/net/ntohl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohl(netorder) */ diff --git a/lib/libc/i386/net/ntohs.S b/lib/libc/i386/net/ntohs.S index 184a1e65fde2..4bed4a2c19c8 100644 --- a/lib/libc/i386/net/ntohs.S +++ b/lib/libc/i386/net/ntohs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohs(netorder) */ diff --git a/lib/libc/i386/stdlib/Makefile.inc b/lib/libc/i386/stdlib/Makefile.inc index 07fb8895ad61..65ce3481497f 100644 --- a/lib/libc/i386/stdlib/Makefile.inc +++ b/lib/libc/i386/stdlib/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= abs.S diff --git a/lib/libc/i386/stdlib/abs.S b/lib/libc/i386/stdlib/abs.S index ada9b04188e8..4915d16641b5 100644 --- a/lib/libc/i386/stdlib/abs.S +++ b/lib/libc/i386/stdlib/abs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/stdlib/div.S b/lib/libc/i386/stdlib/div.S index 12ce3dc6266e..b2a9901fe639 100644 --- a/lib/libc/i386/stdlib/div.S +++ b/lib/libc/i386/stdlib/div.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/stdlib/labs.S b/lib/libc/i386/stdlib/labs.S index 1aa1a589a1ac..5c5afe142bbc 100644 --- a/lib/libc/i386/stdlib/labs.S +++ b/lib/libc/i386/stdlib/labs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/stdlib/ldiv.S b/lib/libc/i386/stdlib/ldiv.S index 26cce9c8afac..38cdf3f5631d 100644 --- a/lib/libc/i386/stdlib/ldiv.S +++ b/lib/libc/i386/stdlib/ldiv.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/Makefile.inc b/lib/libc/i386/string/Makefile.inc index fae252392ce7..be5827f0e4cf 100644 --- a/lib/libc/i386/string/Makefile.inc +++ b/lib/libc/i386/string/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.S memcmp.S \ memmove.S memset.S \ diff --git a/lib/libc/i386/string/bcmp.S b/lib/libc/i386/string/bcmp.S index 329404d913a6..1c0c9347234b 100644 --- a/lib/libc/i386/string/bcmp.S +++ b/lib/libc/i386/string/bcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/bcopy.S b/lib/libc/i386/string/bcopy.S index 1638f8501949..21f0d411364c 100644 --- a/lib/libc/i386/string/bcopy.S +++ b/lib/libc/i386/string/bcopy.S @@ -32,12 +32,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/bzero.S b/lib/libc/i386/string/bzero.S index ac52ef162244..8cc8f9fd5f95 100644 --- a/lib/libc/i386/string/bzero.S +++ b/lib/libc/i386/string/bzero.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/ffs.S b/lib/libc/i386/string/ffs.S index c4841f94f292..084115b17faf 100644 --- a/lib/libc/i386/string/ffs.S +++ b/lib/libc/i386/string/ffs.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/index.S b/lib/libc/i386/string/index.S index 12ee98643599..0a6c6a3771a4 100644 --- a/lib/libc/i386/string/index.S +++ b/lib/libc/i386/string/index.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memchr.S b/lib/libc/i386/string/memchr.S index 40ee2cfd1959..cc2dc7677ec2 100644 --- a/lib/libc/i386/string/memchr.S +++ b/lib/libc/i386/string/memchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memcmp.S b/lib/libc/i386/string/memcmp.S index 8c430abd3871..a362533ac3b8 100644 --- a/lib/libc/i386/string/memcmp.S +++ b/lib/libc/i386/string/memcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memmove.S b/lib/libc/i386/string/memmove.S index 5224008449f3..07ca10f5b405 100644 --- a/lib/libc/i386/string/memmove.S +++ b/lib/libc/i386/string/memmove.S @@ -32,12 +32,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/memset.S b/lib/libc/i386/string/memset.S index 89f589c1b56f..5db1661feb7b 100644 --- a/lib/libc/i386/string/memset.S +++ b/lib/libc/i386/string/memset.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/rindex.S b/lib/libc/i386/string/rindex.S index 3371975d087a..6e023d16323e 100644 --- a/lib/libc/i386/string/rindex.S +++ b/lib/libc/i386/string/rindex.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcat.S b/lib/libc/i386/string/strcat.S index f956542fe3d7..9ec605342def 100644 --- a/lib/libc/i386/string/strcat.S +++ b/lib/libc/i386/string/strcat.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strchr.S b/lib/libc/i386/string/strchr.S index 5e14780d1c16..a483edd6fb0c 100644 --- a/lib/libc/i386/string/strchr.S +++ b/lib/libc/i386/string/strchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcmp.S b/lib/libc/i386/string/strcmp.S index 7205035e90a1..ecdb0b079bfd 100644 --- a/lib/libc/i386/string/strcmp.S +++ b/lib/libc/i386/string/strcmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strcpy.S b/lib/libc/i386/string/strcpy.S index 6f3557b54186..d8e673aa7b83 100644 --- a/lib/libc/i386/string/strcpy.S +++ b/lib/libc/i386/string/strcpy.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strlen.S b/lib/libc/i386/string/strlen.S index 375ab5bc5aad..93190cf29671 100644 --- a/lib/libc/i386/string/strlen.S +++ b/lib/libc/i386/string/strlen.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strncmp.S b/lib/libc/i386/string/strncmp.S index 0d1c1aed4948..62686dc42274 100644 --- a/lib/libc/i386/string/strncmp.S +++ b/lib/libc/i386/string/strncmp.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/strrchr.S b/lib/libc/i386/string/strrchr.S index 3202b30d7888..0cc08d76fafe 100644 --- a/lib/libc/i386/string/strrchr.S +++ b/lib/libc/i386/string/strrchr.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/string/swab.S b/lib/libc/i386/string/swab.S index 5e39fea9b4f9..717b7a2f2081 100644 --- a/lib/libc/i386/string/swab.S +++ b/lib/libc/i386/string/swab.S @@ -27,12 +27,12 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif #include "DEFS.h" diff --git a/lib/libc/i386/sys/Makefile.inc b/lib/libc/i386/sys/Makefile.inc index 8aaa3c479582..6774dd3425a9 100644 --- a/lib/libc/i386/sys/Makefile.inc +++ b/lib/libc/i386/sys/Makefile.inc @@ -1,5 +1,5 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/${MACHINE}/sys diff --git a/lib/libc/i386/sys/Ovfork.S b/lib/libc/i386/sys/Ovfork.S index de00199945ab..e4ed257d3c33 100644 --- a/lib/libc/i386/sys/Ovfork.S +++ b/lib/libc/i386/sys/Ovfork.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "DEFS.h" diff --git a/lib/libc/i386/sys/brk.S b/lib/libc/i386/sys/brk.S index b306bc577af7..4fdf0c637146 100644 --- a/lib/libc/i386/sys/brk.S +++ b/lib/libc/i386/sys/brk.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/cerror.S b/lib/libc/i386/sys/cerror.S index bfa842e17a42..2d8f93517e64 100644 --- a/lib/libc/i386/sys/cerror.S +++ b/lib/libc/i386/sys/cerror.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/exect.S b/lib/libc/i386/sys/exect.S index 7a05291e1b0f..af0d2ee391a3 100644 --- a/lib/libc/i386/sys/exect.S +++ b/lib/libc/i386/sys/exect.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/fork.S b/lib/libc/i386/sys/fork.S index 46bf5dc9feef..ab908a95dba7 100644 --- a/lib/libc/i386/sys/fork.S +++ b/lib/libc/i386/sys/fork.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/i386_get_ldt.2 b/lib/libc/i386/sys/i386_get_ldt.2 index 3ee6865f04b3..ddf6e0cc2779 100644 --- a/lib/libc/i386/sys/i386_get_ldt.2 +++ b/lib/libc/i386/sys/i386_get_ldt.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)fork.2 6.5 (Berkeley) 3/10/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 20, 1993 .Dt I386_GET_LDT 2 diff --git a/lib/libc/i386/sys/i386_get_ldt.c b/lib/libc/i386/sys/i386_get_ldt.c index cae376284194..628052b7af64 100644 --- a/lib/libc/i386/sys/i386_get_ldt.c +++ b/lib/libc/i386/sys/i386_get_ldt.c @@ -25,11 +25,11 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/i386/sys/i386_set_ldt.c b/lib/libc/i386/sys/i386_set_ldt.c index 16a0f9d79588..6a54b301ab0f 100644 --- a/lib/libc/i386/sys/i386_set_ldt.c +++ b/lib/libc/i386/sys/i386_set_ldt.c @@ -25,11 +25,11 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/i386/sys/mount.S b/lib/libc/i386/sys/mount.S index 7a23e7007691..85b88373dc1a 100644 --- a/lib/libc/i386/sys/mount.S +++ b/lib/libc/i386/sys/mount.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/pipe.S b/lib/libc/i386/sys/pipe.S index 1cc923b87a3e..637b86f9f0b1 100644 --- a/lib/libc/i386/sys/pipe.S +++ b/lib/libc/i386/sys/pipe.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/ptrace.S b/lib/libc/i386/sys/ptrace.S index 07d2c8753b43..018a02cf94ed 100644 --- a/lib/libc/i386/sys/ptrace.S +++ b/lib/libc/i386/sys/ptrace.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/reboot.S b/lib/libc/i386/sys/reboot.S index 93fa431bf51a..70049b249b1d 100644 --- a/lib/libc/i386/sys/reboot.S +++ b/lib/libc/i386/sys/reboot.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/rfork.S b/lib/libc/i386/sys/rfork.S index 4003c9c7527b..189d399503e6 100644 --- a/lib/libc/i386/sys/rfork.S +++ b/lib/libc/i386/sys/rfork.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/sbrk.S b/lib/libc/i386/sys/sbrk.S index 6bf587b211e5..a3afd8907900 100644 --- a/lib/libc/i386/sys/sbrk.S +++ b/lib/libc/i386/sys/sbrk.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/setlogin.S b/lib/libc/i386/sys/setlogin.S index 8e04747477b3..7bcf3bd886b3 100644 --- a/lib/libc/i386/sys/setlogin.S +++ b/lib/libc/i386/sys/setlogin.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* LIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/sigpending.S b/lib/libc/i386/sys/sigpending.S index 4bc56f253fab..2ce0df8b0ab1 100644 --- a/lib/libc/i386/sys/sigpending.S +++ b/lib/libc/i386/sys/sigpending.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/sigprocmask.S b/lib/libc/i386/sys/sigprocmask.S index e8406846f56c..6dbc8c981c68 100644 --- a/lib/libc/i386/sys/sigprocmask.S +++ b/lib/libc/i386/sys/sigprocmask.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/sigreturn.S b/lib/libc/i386/sys/sigreturn.S index e276594a988b..65deb40ab667 100644 --- a/lib/libc/i386/sys/sigreturn.S +++ b/lib/libc/i386/sys/sigreturn.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/sigsuspend.S b/lib/libc/i386/sys/sigsuspend.S index f04ab938b6dd..660eabf85411 100644 --- a/lib/libc/i386/sys/sigsuspend.S +++ b/lib/libc/i386/sys/sigsuspend.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/i386/sys/syscall.S b/lib/libc/i386/sys/syscall.S index fd271fb273ac..711a770455b2 100644 --- a/lib/libc/i386/sys/syscall.S +++ b/lib/libc/i386/sys/syscall.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$FreeBSD$" + .asciz "$Id$" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" diff --git a/lib/libc/locale/collate.c b/lib/libc/locale/collate.c index 0d479a1c2767..d1f03e7ac560 100644 --- a/lib/libc/locale/collate.c +++ b/lib/libc/locale/collate.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/locale/collate.h b/lib/libc/locale/collate.h index 23a87b7e0a75..638b4beafd9b 100644 --- a/lib/libc/locale/collate.h +++ b/lib/libc/locale/collate.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #ifndef COLLATE_H_INCLUDED diff --git a/lib/libc/locale/collcmp.c b/lib/libc/locale/collcmp.c index 50eac31046ac..35d0640a23a1 100644 --- a/lib/libc/locale/collcmp.c +++ b/lib/libc/locale/collcmp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #define ASCII_COMPATIBLE_COLLATE /* see usr.bin/colldef/data */ diff --git a/lib/libc/locale/setlocale.c b/lib/libc/locale/setlocale.c index 656ed85663f8..58de9ea319b7 100644 --- a/lib/libc/locale/setlocale.c +++ b/lib/libc/locale/setlocale.c @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #ifdef LIBC_RCS static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif #if defined(LIBC_SCCS) && !defined(lint) diff --git a/lib/libc/locale/table.c b/lib/libc/locale/table.c index 3882d925fd43..a24bbb70bf37 100644 --- a/lib/libc/locale/table.c +++ b/lib/libc/locale/table.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #if defined(LIBC_SCCS) && !defined(lint) diff --git a/lib/libc/net/ether_addr.c b/lib/libc/net/ether_addr.c index ecb075cf2053..9b7a9abf44a8 100644 --- a/lib/libc/net/ether_addr.c +++ b/lib/libc/net/ether_addr.c @@ -35,7 +35,7 @@ * Center for Telecommunications Research * Columbia University, New York City * - * $FreeBSD$ + * $Id$ */ diff --git a/lib/libc/net/ethers.3 b/lib/libc/net/ethers.3 index 1232ba74a4f5..afea48320a66 100644 --- a/lib/libc/net/ethers.3 +++ b/lib/libc/net/ethers.3 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 12, 1995 .Dt ETHERS 3 diff --git a/lib/libc/net/gethostbydns.c b/lib/libc/net/gethostbydns.c index 6d1601f0716a..85dcf338255e 100644 --- a/lib/libc/net/gethostbydns.c +++ b/lib/libc/net/gethostbydns.c @@ -56,7 +56,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93"; static char fromrcsid[] = "From: Id: gethnamaddr.c,v 8.20 1996/09/28 06:51:07 vixie Exp"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/gethostbyht.c b/lib/libc/net/gethostbyht.c index 8df766cec67c..4e0f85002fab 100644 --- a/lib/libc/net/gethostbyht.c +++ b/lib/libc/net/gethostbyht.c @@ -53,7 +53,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/gethostbynis.c b/lib/libc/net/gethostbynis.c index 10ff7b912204..45dbe5a85d12 100644 --- a/lib/libc/net/gethostbynis.c +++ b/lib/libc/net/gethostbynis.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$FreeBSD$"; -static char rcsid[] = "$FreeBSD$"; +static char sccsid[] = "@(#)$Id$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/gethostnamadr.c b/lib/libc/net/gethostnamadr.c index 39a248f72355..1912bba3f624 100644 --- a/lib/libc/net/gethostnamadr.c +++ b/lib/libc/net/gethostnamadr.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$FreeBSD$"; -static char rcsid[] = "$FreeBSD$"; +static char sccsid[] = "@(#)$Id$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/getnetbydns.c b/lib/libc/net/getnetbydns.c index 2b3ff76367b6..6029cd6047be 100644 --- a/lib/libc/net/getnetbydns.c +++ b/lib/libc/net/getnetbydns.c @@ -60,7 +60,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/getnetbynis.c b/lib/libc/net/getnetbynis.c index 0ab7073cada5..0549016ba210 100644 --- a/lib/libc/net/getnetbynis.c +++ b/lib/libc/net/getnetbynis.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$FreeBSD$"; -static char rcsid[] = "$FreeBSD$"; +static char sccsid[] = "@(#)$Id$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/getnetnamadr.c b/lib/libc/net/getnetnamadr.c index 8eb37c856c87..a449876ae3f9 100644 --- a/lib/libc/net/getnetnamadr.c +++ b/lib/libc/net/getnetnamadr.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$FreeBSD$"; -static char rcsid[] = "$FreeBSD$"; +static char sccsid[] = "@(#)$Id$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/getservent.3 b/lib/libc/net/getservent.3 index 614218da0db5..79c18a3beb91 100644 --- a/lib/libc/net/getservent.3 +++ b/lib/libc/net/getservent.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)getservent.3 8.3 (Berkeley) 1/12/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 9, 1995 .Dt GETSERVENT 3 diff --git a/lib/libc/net/herror.c b/lib/libc/net/herror.c index d5c858a3b0e2..f22f519fa7e0 100644 --- a/lib/libc/net/herror.c +++ b/lib/libc/net/herror.c @@ -53,7 +53,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)herror.c 8.1 (Berkeley) 6/4/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/inet.3 b/lib/libc/net/inet.3 index a78bee35da91..6eef5cea6d6b 100644 --- a/lib/libc/net/inet.3 +++ b/lib/libc/net/inet.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)inet.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 17, 1996 .Dt INET 3 diff --git a/lib/libc/net/inet_addr.c b/lib/libc/net/inet_addr.c index e7454941cfdc..a1ac89951970 100644 --- a/lib/libc/net/inet_addr.c +++ b/lib/libc/net/inet_addr.c @@ -55,7 +55,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/inet_net_ntop.c b/lib/libc/net/inet_net_ntop.c index 5633f55acd2c..4c7893d417ff 100644 --- a/lib/libc/net/inet_net_ntop.c +++ b/lib/libc/net/inet_net_ntop.c @@ -17,7 +17,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char orig_rcsid[] = "From Id: inet_net_ntop.c,v 8.2 1996/08/08 06:54:44 vixie Exp"; -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif #include diff --git a/lib/libc/net/inet_net_pton.c b/lib/libc/net/inet_net_pton.c index a16bd32f0c9e..6fd6a06c6da9 100644 --- a/lib/libc/net/inet_net_pton.c +++ b/lib/libc/net/inet_net_pton.c @@ -17,7 +17,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char orig_rcsid[] = "From Id: inet_net_pton.c,v 8.3 1996/11/11 06:36:52 vixie Exp"; -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif #include diff --git a/lib/libc/net/inet_neta.c b/lib/libc/net/inet_neta.c index 2a1404c932ea..15a1c70529ac 100644 --- a/lib/libc/net/inet_neta.c +++ b/lib/libc/net/inet_neta.c @@ -17,7 +17,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char orig_rcsid[] = "From Id: inet_neta.c,v 8.2 1996/08/08 06:54:44 vixie Exp"; -static const char rcsid[] = "$FreeBSD$"; +static const char rcsid[] = "$Id$"; #endif #include diff --git a/lib/libc/net/inet_ntop.c b/lib/libc/net/inet_ntop.c index ab3e5bcca069..36dcb3264dff 100644 --- a/lib/libc/net/inet_ntop.c +++ b/lib/libc/net/inet_ntop.c @@ -15,7 +15,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/inet_pton.c b/lib/libc/net/inet_pton.c index e5371042449d..054ff7dbb2c7 100644 --- a/lib/libc/net/inet_pton.c +++ b/lib/libc/net/inet_pton.c @@ -15,7 +15,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/linkaddr.3 b/lib/libc/net/linkaddr.3 index d2cf74a2da3b..6999add0e862 100644 --- a/lib/libc/net/linkaddr.3 +++ b/lib/libc/net/linkaddr.3 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)linkaddr.3 8.1 (Berkeley) 7/28/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 17, 1996 .Dt LINK_ADDR 3 diff --git a/lib/libc/net/map_v4v6.c b/lib/libc/net/map_v4v6.c index ca5e55388f6e..0f8658e1174b 100644 --- a/lib/libc/net/map_v4v6.c +++ b/lib/libc/net/map_v4v6.c @@ -55,7 +55,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/ns.3 b/lib/libc/net/ns.3 index 9a7f91086c9e..e621ad2d9066 100644 --- a/lib/libc/net/ns.3 +++ b/lib/libc/net/ns.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ns.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt NS 3 diff --git a/lib/libc/net/nsap_addr.c b/lib/libc/net/nsap_addr.c index 930b4ca0c838..b0c6433e558d 100644 --- a/lib/libc/net/nsap_addr.c +++ b/lib/libc/net/nsap_addr.c @@ -16,7 +16,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/rcmd.3 b/lib/libc/net/rcmd.3 index 486b5c55c434..e25057fa4eb9 100644 --- a/lib/libc/net/rcmd.3 +++ b/lib/libc/net/rcmd.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)rcmd.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd February 15, 1996 .Dt RCMD 3 diff --git a/lib/libc/net/res_comp.c b/lib/libc/net/res_comp.c index 816d6095e279..ffacb84b4bc3 100644 --- a/lib/libc/net/res_comp.c +++ b/lib/libc/net/res_comp.c @@ -56,7 +56,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_comp.c 8.1 (Berkeley) 6/4/93"; static char orig_rcsid[] = "From: Id: res_comp.c,v 8.11 1996/12/02 09:17:22 vixie Exp"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/res_data.c b/lib/libc/net/res_data.c index 525ccb7deb5b..df0e0ddc9e48 100644 --- a/lib/libc/net/res_data.c +++ b/lib/libc/net/res_data.c @@ -54,7 +54,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/res_debug.c b/lib/libc/net/res_debug.c index 7a16296cc7c3..0d3913eaf3dd 100644 --- a/lib/libc/net/res_debug.c +++ b/lib/libc/net/res_debug.c @@ -78,7 +78,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_debug.c 8.1 (Berkeley) 6/4/93"; static char orig_rcsid[] = "From: Id: res_debug.c,v 8.19 1996/11/26 10:11:23 vixie Exp"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include "res_config.h" diff --git a/lib/libc/net/res_init.c b/lib/libc/net/res_init.c index fe880e332672..f3b19ea0c1eb 100644 --- a/lib/libc/net/res_init.c +++ b/lib/libc/net/res_init.c @@ -55,7 +55,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_init.c 8.1 (Berkeley) 6/7/93"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/res_mkquery.c b/lib/libc/net/res_mkquery.c index 61b560f8c92c..cfc9d3329d04 100644 --- a/lib/libc/net/res_mkquery.c +++ b/lib/libc/net/res_mkquery.c @@ -56,7 +56,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_mkquery.c 8.1 (Berkeley) 6/4/93"; static char orig_rcsid[] = "From: Id: res_mkquery.c,v 8.5 1996/08/27 08:33:28 vixie Exp "; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/res_query.c b/lib/libc/net/res_query.c index e2553240bc8c..d61d18232e48 100644 --- a/lib/libc/net/res_query.c +++ b/lib/libc/net/res_query.c @@ -56,7 +56,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_query.c 8.1 (Berkeley) 6/4/93"; static char orig_rcsid = "From: Id: res_query.c,v 8.9 1996/09/22 00:13:28 vixie Exp"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/net/res_send.c b/lib/libc/net/res_send.c index 38f5389da1a0..26a0e5172eff 100644 --- a/lib/libc/net/res_send.c +++ b/lib/libc/net/res_send.c @@ -56,7 +56,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93"; static char orig_rcsid[] = "From: Id: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp"; -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/net/res_stubs.c b/lib/libc/net/res_stubs.c index 5c4532d0b265..abe793a90d03 100644 --- a/lib/libc/net/res_stubs.c +++ b/lib/libc/net/res_stubs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ /* diff --git a/lib/libc/nls/catclose.3 b/lib/libc/nls/catclose.3 index 2682b2f51bbe..e4757bd27db5 100644 --- a/lib/libc/nls/catclose.3 +++ b/lib/libc/nls/catclose.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .\" Copyright (c) 1994 Winning Strategies, Inc. .\" All rights reserved. diff --git a/lib/libc/nls/catclose.c b/lib/libc/nls/catclose.c index 33b405deb972..341f6643aa80 100644 --- a/lib/libc/nls/catclose.c +++ b/lib/libc/nls/catclose.c @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $Id$ */ /* * Written by J.T. Conklin, 10/05/94 diff --git a/lib/libc/nls/catgets.3 b/lib/libc/nls/catgets.3 index acef19d085b5..b50f8a4f5c6a 100644 --- a/lib/libc/nls/catgets.3 +++ b/lib/libc/nls/catgets.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .\" Copyright (c) 1994 Winning Strategies, Inc. .\" All rights reserved. diff --git a/lib/libc/nls/catgets.c b/lib/libc/nls/catgets.c index 0861704535e9..c29cf6468414 100644 --- a/lib/libc/nls/catgets.c +++ b/lib/libc/nls/catgets.c @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $Id$ */ /* * Written by J.T. Conklin, 10/05/94 diff --git a/lib/libc/nls/catopen.3 b/lib/libc/nls/catopen.3 index 97a2c2035588..a792ebddf8ec 100644 --- a/lib/libc/nls/catopen.3 +++ b/lib/libc/nls/catopen.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .\" Copyright (c) 1994 Winning Strategies, Inc. .\" All rights reserved. diff --git a/lib/libc/nls/catopen.c b/lib/libc/nls/catopen.c index 0fe4d30bfb41..5dfb727c5812 100644 --- a/lib/libc/nls/catopen.c +++ b/lib/libc/nls/catopen.c @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $Id$ */ /* * Written by J.T. Conklin, 10/05/94 diff --git a/lib/libc/nls/msgcat.c b/lib/libc/nls/msgcat.c index 2340b48093ee..6ac3a3bd8bf0 100644 --- a/lib/libc/nls/msgcat.c +++ b/lib/libc/nls/msgcat.c @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $Id$ */ /*********************************************************** Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts. diff --git a/lib/libc/nls/msgcat.h b/lib/libc/nls/msgcat.h index 7f2745a2792b..9df7a82907b9 100644 --- a/lib/libc/nls/msgcat.h +++ b/lib/libc/nls/msgcat.h @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $Id$ */ /* -*-c++-*- */ diff --git a/lib/libc/quad/quad.h b/lib/libc/quad/quad.h index 2ba1b2bf4358..873a1f6bde0a 100644 --- a/lib/libc/quad/quad.h +++ b/lib/libc/quad/quad.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)quad.h 8.1 (Berkeley) 6/4/93 - * $FreeBSD$ + * $Id$ */ /* diff --git a/lib/libc/rpc/auth_none.c b/lib/libc/rpc/auth_none.c index 9649df3ab51b..dc71ce2d454e 100644 --- a/lib/libc/rpc/auth_none.c +++ b/lib/libc/rpc/auth_none.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)auth_none.c 1.19 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)auth_none.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/auth_unix.c b/lib/libc/rpc/auth_unix.c index f2a09183f061..19c78182a5bc 100644 --- a/lib/libc/rpc/auth_unix.c +++ b/lib/libc/rpc/auth_unix.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)auth_unix.c 1.19 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)auth_unix.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/authunix_prot.c b/lib/libc/rpc/authunix_prot.c index 54f23fc9fefd..d1d6ad05a191 100644 --- a/lib/libc/rpc/authunix_prot.c +++ b/lib/libc/rpc/authunix_prot.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)authunix_prot.c 1.15 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)authunix_prot.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/bindresvport.c b/lib/libc/rpc/bindresvport.c index 1a62efaca877..5d97adc59176 100644 --- a/lib/libc/rpc/bindresvport.c +++ b/lib/libc/rpc/bindresvport.c @@ -31,7 +31,7 @@ /*static char *sccsid = "from: @(#)bindresvport.c 1.8 88/02/08 SMI";*/ /*static char *sccsid = "from: @(#)bindresvport.c 2.2 88/07/29 4.0 RPCSRC";*/ /*from: OpenBSD: bindresvport.c,v 1.7 1996/07/30 16:25:47 downsj Exp */ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_generic.c b/lib/libc/rpc/clnt_generic.c index ac0a93758dec..fd0133fb9fe9 100644 --- a/lib/libc/rpc/clnt_generic.c +++ b/lib/libc/rpc/clnt_generic.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_generic.c 1.4 87/08/11 (C) 1987 SMI";*/ /*static char *sccsid = "from: @(#)clnt_generic.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_perror.c b/lib/libc/rpc/clnt_perror.c index f8687ae7f02f..6db23ae5043b 100644 --- a/lib/libc/rpc/clnt_perror.c +++ b/lib/libc/rpc/clnt_perror.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_perror.c 1.15 87/10/07 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)clnt_perror.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index 6f228fe99d69..cec73570a0db 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_raw.c 1.22 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)clnt_raw.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_simple.c b/lib/libc/rpc/clnt_simple.c index dd935d36ece9..f49e5a705a3c 100644 --- a/lib/libc/rpc/clnt_simple.c +++ b/lib/libc/rpc/clnt_simple.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)clnt_simple.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_tcp.c b/lib/libc/rpc/clnt_tcp.c index 538d8786755e..0f457b3a1d77 100644 --- a/lib/libc/rpc/clnt_tcp.c +++ b/lib/libc/rpc/clnt_tcp.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_tcp.c 1.37 87/10/05 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)clnt_tcp.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/clnt_udp.c b/lib/libc/rpc/clnt_udp.c index 876cf8c5bf11..1549bec6a4e6 100644 --- a/lib/libc/rpc/clnt_udp.c +++ b/lib/libc/rpc/clnt_udp.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(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";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/get_myaddress.c b/lib/libc/rpc/get_myaddress.c index a3c1f14cef4a..cb7ac9ef74b2 100644 --- a/lib/libc/rpc/get_myaddress.c +++ b/lib/libc/rpc/get_myaddress.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)get_myaddress.c 1.4 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)get_myaddress.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/getrpcent.c b/lib/libc/rpc/getrpcent.c index 4290235e686d..df079f14ddec 100644 --- a/lib/libc/rpc/getrpcent.c +++ b/lib/libc/rpc/getrpcent.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)getrpcent.c 1.14 91/03/11 Copyr 1984 Sun Micro";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/getrpcport.c b/lib/libc/rpc/getrpcport.c index 24c6257fd886..5260438c29c7 100644 --- a/lib/libc/rpc/getrpcport.c +++ b/lib/libc/rpc/getrpcport.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)getrpcport.c 1.3 87/08/11 SMI";*/ /*static char *sccsid = "from: @(#)getrpcport.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_clnt.c b/lib/libc/rpc/pmap_clnt.c index b57168748973..6a1f567fd92b 100644 --- a/lib/libc/rpc/pmap_clnt.c +++ b/lib/libc/rpc/pmap_clnt.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_clnt.c 1.37 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_clnt.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_getmaps.c b/lib/libc/rpc/pmap_getmaps.c index 098ba17bffac..add48fa702fc 100644 --- a/lib/libc/rpc/pmap_getmaps.c +++ b/lib/libc/rpc/pmap_getmaps.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_getmaps.c 1.10 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_getmaps.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_getport.c b/lib/libc/rpc/pmap_getport.c index 29a26ca4b71e..e9686072c676 100644 --- a/lib/libc/rpc/pmap_getport.c +++ b/lib/libc/rpc/pmap_getport.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_getport.c 1.9 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_getport.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_prot.c b/lib/libc/rpc/pmap_prot.c index f42484299477..7bb61c130e9f 100644 --- a/lib/libc/rpc/pmap_prot.c +++ b/lib/libc/rpc/pmap_prot.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_prot.c 1.17 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_prot.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_prot2.c b/lib/libc/rpc/pmap_prot2.c index 9c5230ddaeba..bd0263c658b3 100644 --- a/lib/libc/rpc/pmap_prot2.c +++ b/lib/libc/rpc/pmap_prot2.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_prot2.c 1.3 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_prot2.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/pmap_rmt.c b/lib/libc/rpc/pmap_rmt.c index 355f34b83e76..b4b50edbea2a 100644 --- a/lib/libc/rpc/pmap_rmt.c +++ b/lib/libc/rpc/pmap_rmt.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)pmap_rmt.c 1.21 87/08/27 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)pmap_rmt.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/rpc_callmsg.c b/lib/libc/rpc/rpc_callmsg.c index dca3a1880d93..9ed7664cc021 100644 --- a/lib/libc/rpc/rpc_callmsg.c +++ b/lib/libc/rpc/rpc_callmsg.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)rpc_callmsg.c 1.4 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)rpc_callmsg.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/rpc_commondata.c b/lib/libc/rpc/rpc_commondata.c index 043c08285056..6c440d1336a0 100644 --- a/lib/libc/rpc/rpc_commondata.c +++ b/lib/libc/rpc/rpc_commondata.c @@ -29,7 +29,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)rpc_commondata.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif #include diff --git a/lib/libc/rpc/rpc_dtablesize.c b/lib/libc/rpc/rpc_dtablesize.c index 1ce5617655d6..77697fef927f 100644 --- a/lib/libc/rpc/rpc_dtablesize.c +++ b/lib/libc/rpc/rpc_dtablesize.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)rpc_dtablesize.c 1.2 87/08/11 Copyr 1987 Sun Micro";*/ /*static char *sccsid = "from: @(#)rpc_dtablesize.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif #include diff --git a/lib/libc/rpc/rpc_prot.c b/lib/libc/rpc/rpc_prot.c index 940a29d13704..6f121fa50fcc 100644 --- a/lib/libc/rpc/rpc_prot.c +++ b/lib/libc/rpc/rpc_prot.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)rpc_prot.c 1.36 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)rpc_prot.c 2.3 88/08/07 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index d5732e65c16f..e7718c3d014b 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_auth.c b/lib/libc/rpc/svc_auth.c index 76e89c10fcb2..f69ebf5a5258 100644 --- a/lib/libc/rpc/svc_auth.c +++ b/lib/libc/rpc/svc_auth.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_auth.c 1.19 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_auth.c 2.1 88/08/07 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_auth_unix.c b/lib/libc/rpc/svc_auth_unix.c index 9d67b29d239f..96f7d1531544 100644 --- a/lib/libc/rpc/svc_auth_unix.c +++ b/lib/libc/rpc/svc_auth_unix.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_auth_unix.c 1.28 88/02/08 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_auth_unix.c 2.3 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_raw.c b/lib/libc/rpc/svc_raw.c index 472615253428..771340ca85d0 100644 --- a/lib/libc/rpc/svc_raw.c +++ b/lib/libc/rpc/svc_raw.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_raw.c 1.15 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_raw.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_run.c b/lib/libc/rpc/svc_run.c index f39886a4e3d7..ad8c365360fd 100644 --- a/lib/libc/rpc/svc_run.c +++ b/lib/libc/rpc/svc_run.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_run.c 1.1 87/10/13 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_run.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_simple.c b/lib/libc/rpc/svc_simple.c index b2dd475fe927..bfbdba36c94c 100644 --- a/lib/libc/rpc/svc_simple.c +++ b/lib/libc/rpc/svc_simple.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_simple.c 1.18 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_simple.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_tcp.c b/lib/libc/rpc/svc_tcp.c index 68ce8e88b33b..b79475113b57 100644 --- a/lib/libc/rpc/svc_tcp.c +++ b/lib/libc/rpc/svc_tcp.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_tcp.c 1.21 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_tcp.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/rpc/svc_udp.c b/lib/libc/rpc/svc_udp.c index 4b76f2d1aadf..660063d809d4 100644 --- a/lib/libc/rpc/svc_udp.c +++ b/lib/libc/rpc/svc_udp.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc_udp.c 1.24 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc_udp.c 2.2 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc index af7591e60395..a549be2c1050 100644 --- a/lib/libc/stdio/Makefile.inc +++ b/lib/libc/stdio/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.3 (Berkeley) 4/17/94 -# $FreeBSD$ +# $Id$ # stdio sources .PATH: ${.CURDIR}/stdio diff --git a/lib/libc/stdio/asprintf.c b/lib/libc/stdio/asprintf.c index 1af6c7fbd5bb..9b4d05b4397b 100644 --- a/lib/libc/stdio/asprintf.c +++ b/lib/libc/stdio/asprintf.c @@ -24,7 +24,7 @@ */ #if defined(LIBC_RCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/stdio/clrerr.c b/lib/libc/stdio/clrerr.c index de8edad23943..a230119a6e80 100644 --- a/lib/libc/stdio/clrerr.c +++ b/lib/libc/stdio/clrerr.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)clrerr.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fclose.c b/lib/libc/stdio/fclose.c index 972cf41f93a8..1104bd08a78d 100644 --- a/lib/libc/stdio/fclose.c +++ b/lib/libc/stdio/fclose.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fclose.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index f070a8428dab..e42df61ea669 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)feof.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/ferror.c b/lib/libc/stdio/ferror.c index 2fe8dbc55e91..8a6850095bf2 100644 --- a/lib/libc/stdio/ferror.c +++ b/lib/libc/stdio/ferror.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)ferror.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fflush.c b/lib/libc/stdio/fflush.c index 35d11e77e30b..aed57ec852c1 100644 --- a/lib/libc/stdio/fflush.c +++ b/lib/libc/stdio/fflush.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fflush.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fgetc.c b/lib/libc/stdio/fgetc.c index 5814f3500338..f93a0046209f 100644 --- a/lib/libc/stdio/fgetc.c +++ b/lib/libc/stdio/fgetc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fgetc.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fgetln.c b/lib/libc/stdio/fgetln.c index ddd4418be7c4..7c5742b908e1 100644 --- a/lib/libc/stdio/fgetln.c +++ b/lib/libc/stdio/fgetln.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fgetln.c 8.2 (Berkeley) 1/2/94"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fgetpos.c b/lib/libc/stdio/fgetpos.c index 6c25e1bbf4a4..ab8a9e50ceaa 100644 --- a/lib/libc/stdio/fgetpos.c +++ b/lib/libc/stdio/fgetpos.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fgetpos.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fgets.c b/lib/libc/stdio/fgets.c index 0e25bebe34b6..434fc07cdec2 100644 --- a/lib/libc/stdio/fgets.c +++ b/lib/libc/stdio/fgets.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fgets.c 8.2 (Berkeley) 12/22/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fileno.c b/lib/libc/stdio/fileno.c index 9bdc3097cfbd..6ceac0c1d8e0 100644 --- a/lib/libc/stdio/fileno.c +++ b/lib/libc/stdio/fileno.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fileno.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c index 841fd39cea19..8a6cddd71a90 100644 --- a/lib/libc/stdio/findfp.c +++ b/lib/libc/stdio/findfp.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)findfp.c 8.2 (Berkeley) 1/4/94"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/flags.c b/lib/libc/stdio/flags.c index 13920c42153d..4ef0db11a400 100644 --- a/lib/libc/stdio/flags.c +++ b/lib/libc/stdio/flags.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)flags.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fprintf.c b/lib/libc/stdio/fprintf.c index c2bf41e1b60d..383f1e17908b 100644 --- a/lib/libc/stdio/fprintf.c +++ b/lib/libc/stdio/fprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fpurge.c b/lib/libc/stdio/fpurge.c index 27cb0757bb77..d1d9e876258f 100644 --- a/lib/libc/stdio/fpurge.c +++ b/lib/libc/stdio/fpurge.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fpurge.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fputc.c b/lib/libc/stdio/fputc.c index f0b936371e83..89b138d15a0a 100644 --- a/lib/libc/stdio/fputc.c +++ b/lib/libc/stdio/fputc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fputc.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fputs.c b/lib/libc/stdio/fputs.c index c818fba2dea6..537c34895deb 100644 --- a/lib/libc/stdio/fputs.c +++ b/lib/libc/stdio/fputs.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fputs.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fread.c b/lib/libc/stdio/fread.c index 21d2d6a731bf..4f67fbf4134f 100644 --- a/lib/libc/stdio/fread.c +++ b/lib/libc/stdio/fread.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fread.c 8.2 (Berkeley) 12/11/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fscanf.c b/lib/libc/stdio/fscanf.c index 408578a5fc21..8513f801cea6 100644 --- a/lib/libc/stdio/fscanf.c +++ b/lib/libc/stdio/fscanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fscanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fseek.c b/lib/libc/stdio/fseek.c index 6e164a817828..c6707dfb34f6 100644 --- a/lib/libc/stdio/fseek.c +++ b/lib/libc/stdio/fseek.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fseek.c 8.3 (Berkeley) 1/2/94"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fsetpos.c b/lib/libc/stdio/fsetpos.c index e36b8461c6f1..d521a2054871 100644 --- a/lib/libc/stdio/fsetpos.c +++ b/lib/libc/stdio/fsetpos.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fsetpos.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index b08a2c564349..855b6e1f8b39 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)ftell.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fvwrite.c b/lib/libc/stdio/fvwrite.c index 976d86dfa56c..28db2bafc4f6 100644 --- a/lib/libc/stdio/fvwrite.c +++ b/lib/libc/stdio/fvwrite.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fvwrite.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fwalk.c b/lib/libc/stdio/fwalk.c index d431de5bd135..8f91b46d9049 100644 --- a/lib/libc/stdio/fwalk.c +++ b/lib/libc/stdio/fwalk.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fwalk.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/fwrite.c b/lib/libc/stdio/fwrite.c index ba6fbd970e5c..ba8540d4af96 100644 --- a/lib/libc/stdio/fwrite.c +++ b/lib/libc/stdio/fwrite.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)fwrite.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/getc.c b/lib/libc/stdio/getc.c index be74b60c6427..ced796b8919a 100644 --- a/lib/libc/stdio/getc.c +++ b/lib/libc/stdio/getc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)getc.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/getchar.c b/lib/libc/stdio/getchar.c index da98515cbb78..0bcbd3a69494 100644 --- a/lib/libc/stdio/getchar.c +++ b/lib/libc/stdio/getchar.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)getchar.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/stdio/gets.c b/lib/libc/stdio/gets.c index 3dcdfe540892..0c821ea76bd1 100644 --- a/lib/libc/stdio/gets.c +++ b/lib/libc/stdio/gets.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)gets.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/getw.c b/lib/libc/stdio/getw.c index 4319417cec86..c72756d4db8d 100644 --- a/lib/libc/stdio/getw.c +++ b/lib/libc/stdio/getw.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)getw.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c index aa03047f872f..bc4c928e2de9 100644 --- a/lib/libc/stdio/mktemp.c +++ b/lib/libc/stdio/mktemp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mktemp.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/printf.c b/lib/libc/stdio/printf.c index f4c71d1245d4..97115494c425 100644 --- a/lib/libc/stdio/printf.c +++ b/lib/libc/stdio/printf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/putc.c b/lib/libc/stdio/putc.c index 3476f5f5e7c9..a1b081464249 100644 --- a/lib/libc/stdio/putc.c +++ b/lib/libc/stdio/putc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)putc.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/putchar.c b/lib/libc/stdio/putchar.c index 9a7633af6aac..99439aca10e7 100644 --- a/lib/libc/stdio/putchar.c +++ b/lib/libc/stdio/putchar.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)putchar.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/puts.c b/lib/libc/stdio/puts.c index b1d8df577835..91a20de975ae 100644 --- a/lib/libc/stdio/puts.c +++ b/lib/libc/stdio/puts.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)puts.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/putw.c b/lib/libc/stdio/putw.c index 80c26c9b1528..946a311ac337 100644 --- a/lib/libc/stdio/putw.c +++ b/lib/libc/stdio/putw.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)putw.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/refill.c b/lib/libc/stdio/refill.c index 0573555c4368..f0583f75471c 100644 --- a/lib/libc/stdio/refill.c +++ b/lib/libc/stdio/refill.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)refill.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/remove.c b/lib/libc/stdio/remove.c index 9b0c6720266d..6a255639c960 100644 --- a/lib/libc/stdio/remove.c +++ b/lib/libc/stdio/remove.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)remove.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/rewind.c b/lib/libc/stdio/rewind.c index 31217b9a3154..f6609d69f576 100644 --- a/lib/libc/stdio/rewind.c +++ b/lib/libc/stdio/rewind.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)rewind.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/scanf.c b/lib/libc/stdio/scanf.c index f905db42c76a..7a8bd65990fa 100644 --- a/lib/libc/stdio/scanf.c +++ b/lib/libc/stdio/scanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)scanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/setbuffer.c b/lib/libc/stdio/setbuffer.c index 69dca69d2e97..d27217751e15 100644 --- a/lib/libc/stdio/setbuffer.c +++ b/lib/libc/stdio/setbuffer.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)setbuffer.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/setvbuf.c b/lib/libc/stdio/setvbuf.c index 7932cb519a33..9cc6bb6ee65e 100644 --- a/lib/libc/stdio/setvbuf.c +++ b/lib/libc/stdio/setvbuf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)setvbuf.c 8.2 (Berkeley) 11/16/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/snprintf.c b/lib/libc/stdio/snprintf.c index 5be7df46a278..0e3c4566f55b 100644 --- a/lib/libc/stdio/snprintf.c +++ b/lib/libc/stdio/snprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)snprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/sprintf.c b/lib/libc/stdio/sprintf.c index ef66054ebd3a..fb0514d5ff2b 100644 --- a/lib/libc/stdio/sprintf.c +++ b/lib/libc/stdio/sprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)sprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/sscanf.c b/lib/libc/stdio/sscanf.c index 4c01c54b687f..d114ae3b9a0f 100644 --- a/lib/libc/stdio/sscanf.c +++ b/lib/libc/stdio/sscanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)sscanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/stdio.c b/lib/libc/stdio/stdio.c index e375f0783e18..852e971336f2 100644 --- a/lib/libc/stdio/stdio.c +++ b/lib/libc/stdio/stdio.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)stdio.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/tempnam.c b/lib/libc/stdio/tempnam.c index d4772db4a775..243fa397ca56 100644 --- a/lib/libc/stdio/tempnam.c +++ b/lib/libc/stdio/tempnam.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)tempnam.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/ungetc.c b/lib/libc/stdio/ungetc.c index 7d156619be7c..c0355b7f6410 100644 --- a/lib/libc/stdio/ungetc.c +++ b/lib/libc/stdio/ungetc.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)ungetc.c 8.2 (Berkeley) 11/3/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vasprintf.c b/lib/libc/stdio/vasprintf.c index 10ca41aad8ca..8030e116b587 100644 --- a/lib/libc/stdio/vasprintf.c +++ b/lib/libc/stdio/vasprintf.c @@ -24,7 +24,7 @@ */ #if defined(LIBC_RCS) && !defined(lint) -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* LIBC_RCS and not lint */ #include diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index eda78266c443..61dba479b8bb 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vfprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/lib/libc/stdio/vfscanf.c b/lib/libc/stdio/vfscanf.c index f2699b8d3676..b39f78948737 100644 --- a/lib/libc/stdio/vfscanf.c +++ b/lib/libc/stdio/vfscanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vfscanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vprintf.c b/lib/libc/stdio/vprintf.c index cd5b41d64b93..8d449d620e61 100644 --- a/lib/libc/stdio/vprintf.c +++ b/lib/libc/stdio/vprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vscanf.c b/lib/libc/stdio/vscanf.c index 561abef36c29..9381710f301a 100644 --- a/lib/libc/stdio/vscanf.c +++ b/lib/libc/stdio/vscanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vscanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c index 29baa5a3126b..8837c2e05144 100644 --- a/lib/libc/stdio/vsnprintf.c +++ b/lib/libc/stdio/vsnprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vsnprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vsprintf.c b/lib/libc/stdio/vsprintf.c index 7777ce126b46..911d97fa36fe 100644 --- a/lib/libc/stdio/vsprintf.c +++ b/lib/libc/stdio/vsprintf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vsprintf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/vsscanf.c b/lib/libc/stdio/vsscanf.c index e0d49e847066..4cfa6627079f 100644 --- a/lib/libc/stdio/vsscanf.c +++ b/lib/libc/stdio/vsscanf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)vsscanf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/wbuf.c b/lib/libc/stdio/wbuf.c index 96157b7905e4..b85ac51fa8e1 100644 --- a/lib/libc/stdio/wbuf.c +++ b/lib/libc/stdio/wbuf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)wbuf.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdio/wsetup.c b/lib/libc/stdio/wsetup.c index 2873bc364d6e..74f0f7755d13 100644 --- a/lib/libc/stdio/wsetup.c +++ b/lib/libc/stdio/wsetup.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)wsetup.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdlib/abs.3 b/lib/libc/stdlib/abs.3 index 233aa31bd237..501263ebd84c 100644 --- a/lib/libc/stdlib/abs.3 +++ b/lib/libc/stdlib/abs.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)abs.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt ABS 3 diff --git a/lib/libc/stdlib/calloc.3 b/lib/libc/stdlib/calloc.3 index a4b50c5aa59b..6c79272296ac 100644 --- a/lib/libc/stdlib/calloc.3 +++ b/lib/libc/stdlib/calloc.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)calloc.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt CALLOC 3 diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3 index 121930525fcd..cd10039db2a9 100644 --- a/lib/libc/stdlib/malloc.3 +++ b/lib/libc/stdlib/malloc.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)malloc.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd August 27, 1996 .Dt MALLOC 3 diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 84cc16220e17..6462ad164690 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libc/stdlib/memory.3 b/lib/libc/stdlib/memory.3 index 5551ef15d965..0a1fed4982f2 100644 --- a/lib/libc/stdlib/memory.3 +++ b/lib/libc/stdlib/memory.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)memory.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt MEMORY 3 diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c index 0abf260cf38b..ff3def5bcec6 100644 --- a/lib/libc/stdlib/qsort.c +++ b/lib/libc/stdlib/qsort.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)qsort.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libc/stdtime/strftime.c b/lib/libc/stdtime/strftime.c index 8329c5adf3da..b44ff683dbb2 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -17,7 +17,7 @@ #ifdef LIBC_RCS static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif #ifndef lint diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc index eee64a1ac034..c88832cf5be2 100644 --- a/lib/libc/string/Makefile.inc +++ b/lib/libc/string/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/${MACHINE}/string ${.CURDIR}/string diff --git a/lib/libc/string/memcmp.3 b/lib/libc/string/memcmp.3 index 68252acb2239..4fbee334f0e1 100644 --- a/lib/libc/string/memcmp.3 +++ b/lib/libc/string/memcmp.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)memcmp.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt MEMCMP 3 diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c index b4631a1f00ad..259ca2346c62 100644 --- a/lib/libc/string/strcoll.c +++ b/lib/libc/string/strcoll.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/string/strdup.3 b/lib/libc/string/strdup.3 index e93ee298a6a3..c99b41673fec 100644 --- a/lib/libc/string/strdup.3 +++ b/lib/libc/string/strdup.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)strdup.3 8.1 (Berkeley) 6/9/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 9, 1993 .Dt STRDUP 3 diff --git a/lib/libc/string/string.3 b/lib/libc/string/string.3 index f3801894745f..462482f1d6fb 100644 --- a/lib/libc/string/string.3 +++ b/lib/libc/string/string.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)string.3 8.2 (Berkeley) 12/11/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 11, 1993 .Dt STRING 3 diff --git a/lib/libc/string/strxfrm.c b/lib/libc/string/strxfrm.c index 9cf449acf207..64b0bcfed50d 100644 --- a/lib/libc/string/strxfrm.c +++ b/lib/libc/string/strxfrm.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 8e65a3723ea5..81d862154c30 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 -# $FreeBSD$ +# $Id$ # sys sources .PATH: ${.CURDIR}/${MACHINE}/sys ${.CURDIR}/sys diff --git a/lib/libc/sys/_exit.2 b/lib/libc/sys/_exit.2 index 00265f8cd826..4f6a1c555b7d 100644 --- a/lib/libc/sys/_exit.2 +++ b/lib/libc/sys/_exit.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)_exit.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt EXIT 2 diff --git a/lib/libc/sys/access.2 b/lib/libc/sys/access.2 index 39da82b4bde7..cf1fe90cb526 100644 --- a/lib/libc/sys/access.2 +++ b/lib/libc/sys/access.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)access.2 8.2 (Berkeley) 4/1/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 1, 1994 .Dt ACCESS 2 diff --git a/lib/libc/sys/chdir.2 b/lib/libc/sys/chdir.2 index 4dba1724acbe..215d75998f52 100644 --- a/lib/libc/sys/chdir.2 +++ b/lib/libc/sys/chdir.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chdir.2 8.2 (Berkeley) 12/11/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 11, 1993 .Dt CHDIR 2 diff --git a/lib/libc/sys/chmod.2 b/lib/libc/sys/chmod.2 index 683f3da87ac4..2179e1640be3 100644 --- a/lib/libc/sys/chmod.2 +++ b/lib/libc/sys/chmod.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chmod.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt CHMOD 2 diff --git a/lib/libc/sys/chown.2 b/lib/libc/sys/chown.2 index 2b4d6b83332f..8cf542299d93 100644 --- a/lib/libc/sys/chown.2 +++ b/lib/libc/sys/chown.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)chown.2 8.4 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt CHOWN 2 diff --git a/lib/libc/sys/close.2 b/lib/libc/sys/close.2 index 2750fbef09bc..1a66e39edc1b 100644 --- a/lib/libc/sys/close.2 +++ b/lib/libc/sys/close.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)close.2 8.2 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt CLOSE 2 diff --git a/lib/libc/sys/dup.2 b/lib/libc/sys/dup.2 index 8f7f1eb9c2de..66c9d29728c5 100644 --- a/lib/libc/sys/dup.2 +++ b/lib/libc/sys/dup.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)dup.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt DUP 2 diff --git a/lib/libc/sys/getpid.2 b/lib/libc/sys/getpid.2 index 761b86cbb3e4..b57fd60e8859 100644 --- a/lib/libc/sys/getpid.2 +++ b/lib/libc/sys/getpid.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)getpid.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt GETPID 2 diff --git a/lib/libc/sys/getsockopt.2 b/lib/libc/sys/getsockopt.2 index c708c6d4781b..ba5e6f84509e 100644 --- a/lib/libc/sys/getsockopt.2 +++ b/lib/libc/sys/getsockopt.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)getsockopt.2 8.3 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd November 3, 1995 .Dt GETSOCKOPT 2 diff --git a/lib/libc/sys/getuid.2 b/lib/libc/sys/getuid.2 index fd717b24eab6..330a3d689995 100644 --- a/lib/libc/sys/getuid.2 +++ b/lib/libc/sys/getuid.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)getuid.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt GETUID 2 diff --git a/lib/libc/sys/kill.2 b/lib/libc/sys/kill.2 index 418b75108c7c..bb6defccf5b9 100644 --- a/lib/libc/sys/kill.2 +++ b/lib/libc/sys/kill.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)kill.2 8.3 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt KILL 2 diff --git a/lib/libc/sys/ktrace.2 b/lib/libc/sys/ktrace.2 index 89baa51e7c3e..8f41a52b76e5 100644 --- a/lib/libc/sys/ktrace.2 +++ b/lib/libc/sys/ktrace.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ktrace.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt KTRACE 2 diff --git a/lib/libc/sys/link.2 b/lib/libc/sys/link.2 index 3a15742d3b83..e0bc45ecf535 100644 --- a/lib/libc/sys/link.2 +++ b/lib/libc/sys/link.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)link.2 8.3 (Berkeley) 1/12/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd January 12, 1994 .Dt LINK 2 diff --git a/lib/libc/sys/listen.2 b/lib/libc/sys/listen.2 index e8bf7e986779..23190319635e 100644 --- a/lib/libc/sys/listen.2 +++ b/lib/libc/sys/listen.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)listen.2 8.2 (Berkeley) 12/11/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd November 3, 1995 .Dt LISTEN 2 diff --git a/lib/libc/sys/lseek.2 b/lib/libc/sys/lseek.2 index 5523ccf6ffef..39a37fab7533 100644 --- a/lib/libc/sys/lseek.2 +++ b/lib/libc/sys/lseek.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)lseek.2 8.3 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt LSEEK 2 diff --git a/lib/libc/sys/madvise.2 b/lib/libc/sys/madvise.2 index ae2a0b250bff..fc7176506baf 100644 --- a/lib/libc/sys/madvise.2 +++ b/lib/libc/sys/madvise.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)madvise.2 8.1 (Berkeley) 6/9/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd Jul 19, 1996 .Dt MADVISE 2 diff --git a/lib/libc/sys/mincore.2 b/lib/libc/sys/mincore.2 index 558ff96b415f..9c694f4cae18 100644 --- a/lib/libc/sys/mincore.2 +++ b/lib/libc/sys/mincore.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mincore.2 8.1 (Berkeley) 6/9/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 9, 1993 .Dt MINCORE 2 diff --git a/lib/libc/sys/minherit.2 b/lib/libc/sys/minherit.2 index 09c620e8b4b2..a8ebed370b33 100644 --- a/lib/libc/sys/minherit.2 +++ b/lib/libc/sys/minherit.2 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. diff --git a/lib/libc/sys/mkdir.2 b/lib/libc/sys/mkdir.2 index 4f278b814532..1dc6ef5e7dc9 100644 --- a/lib/libc/sys/mkdir.2 +++ b/lib/libc/sys/mkdir.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mkdir.2 8.2 (Berkeley) 12/11/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 11, 1993 .Dt MKDIR 2 diff --git a/lib/libc/sys/profil.2 b/lib/libc/sys/profil.2 index 3503dd68ef97..8db74bae3640 100644 --- a/lib/libc/sys/profil.2 +++ b/lib/libc/sys/profil.2 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)profil.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd "June 4, 1993" .Dt PROFIL 2 diff --git a/lib/libc/sys/ptrace.2 b/lib/libc/sys/ptrace.2 index 999f0d45064c..80bb513ef642 100644 --- a/lib/libc/sys/ptrace.2 +++ b/lib/libc/sys/ptrace.2 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" $NetBSD: ptrace.2,v 1.2 1995/02/27 12:35:37 cgd Exp $ .\" .\" This file is in the public domain. diff --git a/lib/libc/sys/readlink.2 b/lib/libc/sys/readlink.2 index 8bf57846e8f7..8443de2170c7 100644 --- a/lib/libc/sys/readlink.2 +++ b/lib/libc/sys/readlink.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)readlink.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt READLINK 2 diff --git a/lib/libc/sys/rename.2 b/lib/libc/sys/rename.2 index 0bce6a291a0a..d9e1b8351f0a 100644 --- a/lib/libc/sys/rename.2 +++ b/lib/libc/sys/rename.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)rename.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt RENAME 2 diff --git a/lib/libc/sys/rtprio.2 b/lib/libc/sys/rtprio.2 index 63a3b6417e93..e27311fee81c 100644 --- a/lib/libc/sys/rtprio.2 +++ b/lib/libc/sys/rtprio.2 @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 23, 1994 .Dt RTPRIO 2 diff --git a/lib/libc/sys/semctl.2 b/lib/libc/sys/semctl.2 index 8bf3d189726c..3ebbeeeb4b78 100644 --- a/lib/libc/sys/semctl.2 +++ b/lib/libc/sys/semctl.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 12, 1995 .Dt SEMCTL 2 diff --git a/lib/libc/sys/semget.2 b/lib/libc/sys/semget.2 index 701d411bd728..45a25d5f0e59 100644 --- a/lib/libc/sys/semget.2 +++ b/lib/libc/sys/semget.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 12, 1995 .Dt SEMGET 2 diff --git a/lib/libc/sys/semop.2 b/lib/libc/sys/semop.2 index f1978c142ef9..9d07893dd97c 100644 --- a/lib/libc/sys/semop.2 +++ b/lib/libc/sys/semop.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd September 22, 1995 .Dt SEMOP 2 diff --git a/lib/libc/sys/send.2 b/lib/libc/sys/send.2 index ab95dad01471..57fcfb3ae3cb 100644 --- a/lib/libc/sys/send.2 +++ b/lib/libc/sys/send.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)send.2 8.2 (Berkeley) 2/21/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd February 15, 1995 .Dt SEND 2 diff --git a/lib/libc/sys/setuid.2 b/lib/libc/sys/setuid.2 index 81f5516a14b5..09448745382b 100644 --- a/lib/libc/sys/setuid.2 +++ b/lib/libc/sys/setuid.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)setuid.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt SETUID 2 diff --git a/lib/libc/sys/shmat.2 b/lib/libc/sys/shmat.2 index bae729e5f5e5..e43554e7b6c8 100644 --- a/lib/libc/sys/shmat.2 +++ b/lib/libc/sys/shmat.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd August 2, 1995 .Dt SHMAT 2 diff --git a/lib/libc/sys/shmctl.2 b/lib/libc/sys/shmctl.2 index 6f684a7698e3..ae78ebcee1d1 100644 --- a/lib/libc/sys/shmctl.2 +++ b/lib/libc/sys/shmctl.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 17, 1995 .Dt SHMCTL 2 diff --git a/lib/libc/sys/shmget.2 b/lib/libc/sys/shmget.2 index 27bf16fdd1d4..64eee64acf78 100644 --- a/lib/libc/sys/shmget.2 +++ b/lib/libc/sys/shmget.2 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 3, 1995 .Dt SHMGET 2 diff --git a/lib/libc/sys/socket.2 b/lib/libc/sys/socket.2 index cadaf2ac79e3..b069b5781fce 100644 --- a/lib/libc/sys/socket.2 +++ b/lib/libc/sys/socket.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)socket.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd February 15, 1995 .Dt SOCKET 2 diff --git a/lib/libc/sys/stat.2 b/lib/libc/sys/stat.2 index b61b90c20be5..24fc4e47857e 100644 --- a/lib/libc/sys/stat.2 +++ b/lib/libc/sys/stat.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)stat.2 8.3 (Berkeley) 4/19/94 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1994 .Dt STAT 2 diff --git a/lib/libc/sys/umask.2 b/lib/libc/sys/umask.2 index 73ca90c892ee..4ac1db818c9b 100644 --- a/lib/libc/sys/umask.2 +++ b/lib/libc/sys/umask.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)umask.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt UMASK 2 diff --git a/lib/libc/sys/unlink.2 b/lib/libc/sys/unlink.2 index 53a207d974b6..8693f95b0067 100644 --- a/lib/libc/sys/unlink.2 +++ b/lib/libc/sys/unlink.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)unlink.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt UNLINK 2 diff --git a/lib/libc/sys/vfork.2 b/lib/libc/sys/vfork.2 index 223aa949c18b..a780cbfea1f6 100644 --- a/lib/libc/sys/vfork.2 +++ b/lib/libc/sys/vfork.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)vfork.2 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt VFORK 2 diff --git a/lib/libc/xdr/xdr.3 b/lib/libc/xdr/xdr.3 index 979b54e03a6e..57204ccebada 100644 --- a/lib/libc/xdr/xdr.3 +++ b/lib/libc/xdr/xdr.3 @@ -1,5 +1,5 @@ .\" @(#)xdr.3n 2.2 88/08/03 4.0 RPCSRC; from 1.16 88/03/14 SMI -.\" $FreeBSD$ +.\" $Id$ .\" .TH XDR 3 "16 February 1988" .SH NAME diff --git a/lib/libc/xdr/xdr.c b/lib/libc/xdr/xdr.c index 49f4958b70df..ccdec03feb49 100644 --- a/lib/libc/xdr/xdr.c +++ b/lib/libc/xdr/xdr.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr.c 1.35 87/08/12";*/ /*static char *sccsid = "from: @(#)xdr.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_array.c b/lib/libc/xdr/xdr_array.c index b7d36fea5ca3..4753606baff6 100644 --- a/lib/libc/xdr/xdr_array.c +++ b/lib/libc/xdr/xdr_array.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_array.c 1.10 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_array.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_float.c b/lib/libc/xdr/xdr_float.c index 0ffbeb3358bc..53d14b0fb158 100644 --- a/lib/libc/xdr/xdr_float.c +++ b/lib/libc/xdr/xdr_float.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_float.c 1.12 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_float.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_mem.c b/lib/libc/xdr/xdr_mem.c index 3193e64939dd..d41b301ce909 100644 --- a/lib/libc/xdr/xdr_mem.c +++ b/lib/libc/xdr/xdr_mem.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_mem.c 1.19 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_mem.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_rec.c b/lib/libc/xdr/xdr_rec.c index f76f1ecd65d0..377c995e91d8 100644 --- a/lib/libc/xdr/xdr_rec.c +++ b/lib/libc/xdr/xdr_rec.c @@ -29,7 +29,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_rec.c 1.21 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_rec.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_reference.c b/lib/libc/xdr/xdr_reference.c index b0cdbce93008..d3458e3ed295 100644 --- a/lib/libc/xdr/xdr_reference.c +++ b/lib/libc/xdr/xdr_reference.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_reference.c 1.11 87/08/11 SMI";*/ /*static char *sccsid = "from: @(#)xdr_reference.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/xdr/xdr_stdio.c b/lib/libc/xdr/xdr_stdio.c index 708573ccdf58..d435e14977c0 100644 --- a/lib/libc/xdr/xdr_stdio.c +++ b/lib/libc/xdr/xdr_stdio.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)xdr_stdio.c 1.16 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)xdr_stdio.c 2.1 88/07/29 4.0 RPCSRC";*/ -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* diff --git a/lib/libc/yp/Makefile.inc b/lib/libc/yp/Makefile.inc index d8cceb37a33b..bec6b4e64f36 100644 --- a/lib/libc/yp/Makefile.inc +++ b/lib/libc/yp/Makefile.inc @@ -1,5 +1,5 @@ # from: @(#)Makefile.inc 5.3 (Berkeley) 2/20/91 -# $FreeBSD$ +# $Id$ # yp sources .PATH: ${.CURDIR}/yp diff --git a/lib/libc/yp/xdryp.c b/lib/libc/yp/xdryp.c index 180528866839..9268fc2ded3a 100644 --- a/lib/libc/yp/xdryp.c +++ b/lib/libc/yp/xdryp.c @@ -28,7 +28,7 @@ */ #ifndef LINT -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif #include diff --git a/lib/libc/yp/yplib.c b/lib/libc/yp/yplib.c index 86df8ed2400e..ab404abfcbc7 100644 --- a/lib/libc/yp/yplib.c +++ b/lib/libc/yp/yplib.c @@ -28,7 +28,7 @@ */ #ifndef LINT -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif #include diff --git a/lib/libc_r/gen/Makefile.inc b/lib/libc_r/gen/Makefile.inc index ed2fa109769d..7799b3563168 100644 --- a/lib/libc_r/gen/Makefile.inc +++ b/lib/libc_r/gen/Makefile.inc @@ -1,5 +1,5 @@ # From: @(#)Makefile.inc 8.3 (Berkeley) 4/16/94 -# $FreeBSD$ +# $Id$ # machine-independent gen sources .PATH: ${.CURDIR}/../libc/${MACHINE}/gen ${.CURDIR}/../libc/gen diff --git a/lib/libc_r/i386/gen/Makefile.inc b/lib/libc_r/i386/gen/Makefile.inc index d57a794571f4..457d5c3c4f4a 100644 --- a/lib/libc_r/i386/gen/Makefile.inc +++ b/lib/libc_r/i386/gen/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= isinf.c infinity.c SRCS+= _setjmp.S alloca.S fabs.S ldexp.c modf.S setjmp.S sigsetjmp.S diff --git a/lib/libc_r/i386/net/Makefile.inc b/lib/libc_r/i386/net/Makefile.inc index 0d532ff6b962..dff7fd1066b7 100644 --- a/lib/libc_r/i386/net/Makefile.inc +++ b/lib/libc_r/i386/net/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= htonl.S htons.S ntohl.S ntohs.S diff --git a/lib/libc_r/i386/stdlib/Makefile.inc b/lib/libc_r/i386/stdlib/Makefile.inc index 07fb8895ad61..65ce3481497f 100644 --- a/lib/libc_r/i386/stdlib/Makefile.inc +++ b/lib/libc_r/i386/stdlib/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= abs.S diff --git a/lib/libc_r/i386/string/Makefile.inc b/lib/libc_r/i386/string/Makefile.inc index fae252392ce7..be5827f0e4cf 100644 --- a/lib/libc_r/i386/string/Makefile.inc +++ b/lib/libc_r/i386/string/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.S memcmp.S \ memmove.S memset.S \ diff --git a/lib/libc_r/i386/sys/Makefile.inc b/lib/libc_r/i386/sys/Makefile.inc index 0c9a14184188..fd725fce57d0 100644 --- a/lib/libc_r/i386/sys/Makefile.inc +++ b/lib/libc_r/i386/sys/Makefile.inc @@ -1,5 +1,5 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/../libc/${MACHINE}/sys diff --git a/lib/libc_r/man/Makefile.inc b/lib/libc_r/man/Makefile.inc index 6049dae5cb05..7d67fb8858bb 100644 --- a/lib/libc_r/man/Makefile.inc +++ b/lib/libc_r/man/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ # POSIX thread man files diff --git a/lib/libc_r/man/pthread_getspecific.3 b/lib/libc_r/man/pthread_getspecific.3 index 0b36b21211ee..b53841e0e76d 100644 --- a/lib/libc_r/man/pthread_getspecific.3 +++ b/lib/libc_r/man/pthread_getspecific.3 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 4, 1996 .Dt PTHREAD_GETSPECIFIC 3 diff --git a/lib/libc_r/stdtime/Makefile.inc b/lib/libc_r/stdtime/Makefile.inc index 26345f03fcfb..6802ec350b96 100644 --- a/lib/libc_r/stdtime/Makefile.inc +++ b/lib/libc_r/stdtime/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/../libc/stdtime diff --git a/lib/libc_r/string/Makefile.inc b/lib/libc_r/string/Makefile.inc index 8ec44d630386..f34813ad62dc 100644 --- a/lib/libc_r/string/Makefile.inc +++ b/lib/libc_r/string/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ .PATH: ${.CURDIR}/../libc/${MACHINE}/string ${.CURDIR}/../libc/string diff --git a/lib/libc_r/uthread/Makefile.inc b/lib/libc_r/uthread/Makefile.inc index cd85700d2beb..3fa6df4525b6 100644 --- a/lib/libc_r/uthread/Makefile.inc +++ b/lib/libc_r/uthread/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ CPLUSPLUSLIB= cpluspluslib diff --git a/lib/libc_r/yp/Makefile.inc b/lib/libc_r/yp/Makefile.inc index c108d13afc05..05e181124670 100644 --- a/lib/libc_r/yp/Makefile.inc +++ b/lib/libc_r/yp/Makefile.inc @@ -1,5 +1,5 @@ # from: @(#)Makefile.inc 5.3 (Berkeley) 2/20/91 -# $FreeBSD$ +# $Id$ # yp sources .PATH: ${.CURDIR}/../libc/yp diff --git a/lib/libcom_err/Makefile b/lib/libcom_err/Makefile index a51cbf43a5a8..31128320b3f4 100644 --- a/lib/libcom_err/Makefile +++ b/lib/libcom_err/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= com_err SRCS= com_err.c error_message.c et_name.c init_et.c diff --git a/lib/libcom_err/com_err.c b/lib/libcom_err/com_err.c index 5217db8b41a1..9da3f9a74407 100644 --- a/lib/libcom_err/com_err.c +++ b/lib/libcom_err/com_err.c @@ -15,7 +15,7 @@ #if ! lint static const char rcsid[] = - "$FreeBSD$"; + "$Id$"; #endif /* ! lint */ static void diff --git a/lib/libcom_err/doc/Makefile b/lib/libcom_err/doc/Makefile index c790868e0d9a..e94d86296dd0 100644 --- a/lib/libcom_err/doc/Makefile +++ b/lib/libcom_err/doc/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ INFO= com_err INFOSECTION= "Programming & development tools." diff --git a/lib/libcompat/4.1/ascftime.c b/lib/libcompat/4.1/ascftime.c index 088143c6e204..e842b6e82081 100644 --- a/lib/libcompat/4.1/ascftime.c +++ b/lib/libcompat/4.1/ascftime.c @@ -31,7 +31,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libcompat/4.1/cftime.3 b/lib/libcompat/4.1/cftime.3 index b9f289354abe..5c760a9d5c31 100644 --- a/lib/libcompat/4.1/cftime.3 +++ b/lib/libcompat/4.1/cftime.3 @@ -32,7 +32,7 @@ .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 15, 1993 .Os diff --git a/lib/libcompat/4.1/cftime.c b/lib/libcompat/4.1/cftime.c index 777055f6847f..2e3a34bc71c8 100644 --- a/lib/libcompat/4.1/cftime.c +++ b/lib/libcompat/4.1/cftime.c @@ -31,7 +31,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libcompat/4.1/ftime.c b/lib/libcompat/4.1/ftime.c index cc4a7f9ca071..7da7e854b69f 100644 --- a/lib/libcompat/4.1/ftime.c +++ b/lib/libcompat/4.1/ftime.c @@ -29,7 +29,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* not lint */ #include diff --git a/lib/libcompat/4.1/getpw.c b/lib/libcompat/4.1/getpw.c index 96b4c1228645..82f70250b739 100644 --- a/lib/libcompat/4.1/getpw.c +++ b/lib/libcompat/4.1/getpw.c @@ -29,7 +29,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libcompat/4.1/gtty.c b/lib/libcompat/4.1/gtty.c index 524f1a64753d..5517ae9e0ebe 100644 --- a/lib/libcompat/4.1/gtty.c +++ b/lib/libcompat/4.1/gtty.c @@ -29,7 +29,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* not lint */ #include diff --git a/lib/libcompat/4.1/stty.c b/lib/libcompat/4.1/stty.c index cf0137f7ac19..3a73c939a938 100644 --- a/lib/libcompat/4.1/stty.c +++ b/lib/libcompat/4.1/stty.c @@ -29,7 +29,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* not lint */ #include diff --git a/lib/libcompat/4.3/cfree.3 b/lib/libcompat/4.3/cfree.3 index 7e3bdce0b041..0f5afb277ddf 100644 --- a/lib/libcompat/4.3/cfree.3 +++ b/lib/libcompat/4.3/cfree.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " <- this is for hilit19 :) .Dd November 23, 1995 .Dt CFREE 3 diff --git a/lib/libcompat/4.4/cuserid.3 b/lib/libcompat/4.4/cuserid.3 index 667656615863..6d25fbafddd5 100644 --- a/lib/libcompat/4.4/cuserid.3 +++ b/lib/libcompat/4.4/cuserid.3 @@ -29,7 +29,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 10, 1995 .Os diff --git a/lib/libcompat/SysV/ftok.3 b/lib/libcompat/SysV/ftok.3 index 362f13f61b43..15e318aef5d9 100644 --- a/lib/libcompat/SysV/ftok.3 +++ b/lib/libcompat/SysV/ftok.3 @@ -23,7 +23,7 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .Dd June 24, 1994 .Os .Dt ftok 3 diff --git a/lib/libcompat/SysV/ftok.c b/lib/libcompat/SysV/ftok.c index 24cfe7d601e0..4f5972521520 100644 --- a/lib/libcompat/SysV/ftok.c +++ b/lib/libcompat/SysV/ftok.c @@ -26,7 +26,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$FreeBSD$"; +static char *rcsid = "$Id$"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index e7ae0e1f2504..6fd0c737594d 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -1,5 +1,5 @@ # -# $FreeBSD$ +# $Id$ # LCRYPTBASE= libcrypt diff --git a/lib/libcrypt/crypt.c b/lib/libcrypt/crypt.c index a83d42f37343..c0a8dc96290f 100644 --- a/lib/libcrypt/crypt.c +++ b/lib/libcrypt/crypt.c @@ -6,12 +6,12 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$Header: /home/ncvs/src/lib/libcrypt/crypt.c,v 1.5 1996/10/14 08:34:02 phk Exp $"; +static char rcsid[] = "$Header: /home/ncvs/src/lib/libcrypt/crypt.c,v 1.6 1997/01/14 06:09:00 jkh Exp $"; #endif /* LIBC_SCCS and not lint */ #include diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index 4363a984dc52..50462656220e 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 1/2/94 -# $FreeBSD$ +# $Id$ CFLAGS+=#-DTFILE=\"/dev/ttyp0\" CFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR} diff --git a/lib/libdisk/Makefile b/lib/libdisk/Makefile index 773d58af90d5..05919d513380 100644 --- a/lib/libdisk/Makefile +++ b/lib/libdisk/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= disk SRCS= blocks.c disklabel.c dkcksum.c chunk.c disk.c change.c \ diff --git a/lib/libdisk/blocks.c b/lib/libdisk/blocks.c index 10f5b31c74a1..3864ec2704c7 100644 --- a/lib/libdisk/blocks.c +++ b/lib/libdisk/blocks.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/change.c b/lib/libdisk/change.c index 6a506f806e15..a144aa5663bc 100644 --- a/lib/libdisk/change.c +++ b/lib/libdisk/change.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/chunk.c b/lib/libdisk/chunk.c index ad639683ddee..a0ea6aa5106d 100644 --- a/lib/libdisk/chunk.c +++ b/lib/libdisk/chunk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c index 88b05c1c58fa..83fa345503ec 100644 --- a/lib/libdisk/create_chunk.c +++ b/lib/libdisk/create_chunk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c index 8f16ffc10b1b..583073d05506 100644 --- a/lib/libdisk/disk.c +++ b/lib/libdisk/disk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/disklabel.c b/lib/libdisk/disklabel.c index 2ee6503225a8..9714e6c28f2e 100644 --- a/lib/libdisk/disklabel.c +++ b/lib/libdisk/disklabel.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/libdisk.3 b/lib/libdisk/libdisk.3 index 83a26f7548c6..1cc938873de3 100644 --- a/lib/libdisk/libdisk.3 +++ b/lib/libdisk/libdisk.3 @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd March 15, 1996 .Dt LIBDISK 3 diff --git a/lib/libdisk/libdisk.h b/lib/libdisk/libdisk.h index 425ca0b5eebf..d78a64606769 100644 --- a/lib/libdisk/libdisk.h +++ b/lib/libdisk/libdisk.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * -* $FreeBSD$ +* $Id$ * */ diff --git a/lib/libdisk/rules.c b/lib/libdisk/rules.c index 9e1ca6ee51dc..5bf75ec9cf8f 100644 --- a/lib/libdisk/rules.c +++ b/lib/libdisk/rules.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/tst01.c b/lib/libdisk/tst01.c index a58cf6995c41..f1fb5ebbd28a 100644 --- a/lib/libdisk/tst01.c +++ b/lib/libdisk/tst01.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libdisk/write_disk.c b/lib/libdisk/write_disk.c index cb26d0656b8b..b810cf3d9a11 100644 --- a/lib/libdisk/write_disk.c +++ b/lib/libdisk/write_disk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libftpio/ftp.errors b/lib/libftpio/ftp.errors index 7ae444515e78..26cb4f61a805 100644 --- a/lib/libftpio/ftp.errors +++ b/lib/libftpio/ftp.errors @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ # # This list is taken from RFC 959. # It probably needs a going over. diff --git a/lib/libftpio/ftpio.3 b/lib/libftpio/ftpio.3 index ae420ae20ac6..292423e683a5 100644 --- a/lib/libftpio/ftpio.3 +++ b/lib/libftpio/ftpio.3 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 17, 1996 .Dt ftpio 3 diff --git a/lib/libftpio/ftpio.c b/lib/libftpio/ftpio.c index 7419c37717b4..bdb7d2e2ff74 100644 --- a/lib/libftpio/ftpio.c +++ b/lib/libftpio/ftpio.c @@ -14,7 +14,7 @@ * Turned inside out. Now returns xfers as new file ids, not as a special * `state' of FTP_t * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libftpio/ftpio.h b/lib/libftpio/ftpio.h index 763283d5e432..4307f3e1357a 100644 --- a/lib/libftpio/ftpio.h +++ b/lib/libftpio/ftpio.h @@ -21,7 +21,7 @@ * Turned inside out. Now returns xfers as new file ids, not as a special * `state' of FTP_t * - * $FreeBSD$ + * $Id$ */ /* Internal housekeeping data structure for FTP sessions */ diff --git a/lib/libgnumalloc/Makefile b/lib/libgnumalloc/Makefile index 74f193eb3eb7..9d30fa20e490 100644 --- a/lib/libgnumalloc/Makefile +++ b/lib/libgnumalloc/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= gnumalloc INTERNALLIB= yes # Do not build or install ${LIB}*.a diff --git a/lib/libkse/thread/Makefile.inc b/lib/libkse/thread/Makefile.inc index cd85700d2beb..3fa6df4525b6 100644 --- a/lib/libkse/thread/Makefile.inc +++ b/lib/libkse/thread/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ CPLUSPLUSLIB= cpluspluslib diff --git a/lib/libkvm/kvm_getprocs.3 b/lib/libkvm/kvm_getprocs.3 index 70b88cadc6d3..1ecfe1444564 100644 --- a/lib/libkvm/kvm_getprocs.3 +++ b/lib/libkvm/kvm_getprocs.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)kvm_getprocs.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt KVM_GETPROCS 3 diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 07702122964e..786322922ad3 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $FreeBSD$ +# $Id$ # # ieee - for most IEEE machines, we hope. # mc68881 - the, ahem, mc68881. diff --git a/lib/libm/common_source/atan2.3 b/lib/libm/common_source/atan2.3 index 8942ed0c001e..3323e01b1050 100644 --- a/lib/libm/common_source/atan2.3 +++ b/lib/libm/common_source/atan2.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)atan2.3 8.1 (Berkeley) 6/4/93 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd June 4, 1993 .Dt ATAN2 3 diff --git a/lib/libmd/Makefile b/lib/libmd/Makefile index 64a043ad4feb..3969862f7b01 100644 --- a/lib/libmd/Makefile +++ b/lib/libmd/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= md NOPIC= true diff --git a/lib/libmd/md2.copyright b/lib/libmd/md2.copyright index acef7bab5be6..5f0456025108 100644 --- a/lib/libmd/md2.copyright +++ b/lib/libmd/md2.copyright @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All rights reserved. .Pp diff --git a/lib/libmd/md2.h b/lib/libmd/md2.h index ca94831fdaae..ecdeaf7870ec 100644 --- a/lib/libmd/md2.h +++ b/lib/libmd/md2.h @@ -1,5 +1,5 @@ /* MD2.H - header file for MD2C.C - * $FreeBSD$ + * $Id$ */ /* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All diff --git a/lib/libmd/md2c.c b/lib/libmd/md2c.c index 6659f1bb3dc2..ebf9edcbfc43 100644 --- a/lib/libmd/md2c.c +++ b/lib/libmd/md2c.c @@ -1,5 +1,5 @@ /* MD2C.C - RSA Data Security, Inc., MD2 message-digest algorithm - * $FreeBSD$ + * $Id$ */ /* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All diff --git a/lib/libmd/md4.copyright b/lib/libmd/md4.copyright index e4502073a1ce..df93ad0a9347 100644 --- a/lib/libmd/md4.copyright +++ b/lib/libmd/md4.copyright @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. .Pp diff --git a/lib/libmd/md4.h b/lib/libmd/md4.h index 237ecc811a32..5481bbda569e 100644 --- a/lib/libmd/md4.h +++ b/lib/libmd/md4.h @@ -1,5 +1,5 @@ /* MD4.H - header file for MD4C.C - * $FreeBSD$ + * $Id$ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All diff --git a/lib/libmd/md4c.c b/lib/libmd/md4c.c index c13d07394aaf..a0eba4d8cf58 100644 --- a/lib/libmd/md4c.c +++ b/lib/libmd/md4c.c @@ -1,5 +1,5 @@ /* MD4C.C - RSA Data Security, Inc., MD4 message-digest algorithm - * $FreeBSD$ + * $Id$ */ /* Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved. diff --git a/lib/libmd/md5.copyright b/lib/libmd/md5.copyright index b718bf8b5ebe..c37746f4501e 100644 --- a/lib/libmd/md5.copyright +++ b/lib/libmd/md5.copyright @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. .Pp diff --git a/lib/libmd/md5c.c b/lib/libmd/md5c.c index af27e73d1d8e..583d009d97f1 100644 --- a/lib/libmd/md5c.c +++ b/lib/libmd/md5c.c @@ -22,7 +22,7 @@ * These notices must be retained in any copies of any part of this * documentation and/or software. * - * $FreeBSD$ + * $Id$ * * This code is the same as the code published by RSA Inc. It has been * edited for clarity and style only. diff --git a/lib/libmd/mdX.3 b/lib/libmd/mdX.3 index 724556cdb85f..ab26fb3e9799 100644 --- a/lib/libmd/mdX.3 +++ b/lib/libmd/mdX.3 @@ -6,7 +6,7 @@ .\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp .\" ---------------------------------------------------------------------------- .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd October 9, 1996 .Dt MDX 3 diff --git a/lib/libmd/mdXhl.c b/lib/libmd/mdXhl.c index 0d505bc5246e..e0e91981449c 100644 --- a/lib/libmd/mdXhl.c +++ b/lib/libmd/mdXhl.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $FreeBSD$ + * $Id$ * */ diff --git a/lib/libmd/mddriver.c b/lib/libmd/mddriver.c index fc6515663e34..633442b5a9f7 100644 --- a/lib/libmd/mddriver.c +++ b/lib/libmd/mddriver.c @@ -1,5 +1,5 @@ /* MDDRIVER.C - test driver for MD2, MD4 and MD5 - * $FreeBSD$ + * $Id$ */ /* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All diff --git a/lib/libmytinfo/Makefile b/lib/libmytinfo/Makefile index 6addb870ded6..f5aa0312f9b1 100644 --- a/lib/libmytinfo/Makefile +++ b/lib/libmytinfo/Makefile @@ -1,7 +1,7 @@ # Makefile for libmytinfo # Use 'make update_term_h' manually after changing internal # mytinfo structures -# $FreeBSD$ +# $Id$ LIB= mytinfo SRCS= addstr.c binorder.c buildpath.c caplist.c capsort.c compar.c\ diff --git a/lib/libmytinfo/TESTS/Makefile b/lib/libmytinfo/TESTS/Makefile index d9b79372988a..eeaa6d241172 100644 --- a/lib/libmytinfo/TESTS/Makefile +++ b/lib/libmytinfo/TESTS/Makefile @@ -1,5 +1,5 @@ # Makefile for libmytinfo tests -# $FreeBSD$ +# $Id$ LIB= mytinfo diff --git a/lib/libncurses/Makefile b/lib/libncurses/Makefile index 9d0968195f9a..c0e7b35db132 100644 --- a/lib/libncurses/Makefile +++ b/lib/libncurses/Makefile @@ -1,5 +1,5 @@ # Makefile for ncurses -# $FreeBSD$ +# $Id$ LIB= ncurses SHLIB_MAJOR= 3 diff --git a/lib/libncurses/curs_addch.3 b/lib/libncurses/curs_addch.3 index 2c55af302a81..5b26e32c42de 100644 --- a/lib/libncurses/curs_addch.3 +++ b/lib/libncurses/curs_addch.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .TH curs_addch 3 "" .SH NAME diff --git a/lib/libncurses/curs_insstr.3 b/lib/libncurses/curs_insstr.3 index ed701aecf7cd..735dd1b18195 100644 --- a/lib/libncurses/curs_insstr.3 +++ b/lib/libncurses/curs_insstr.3 @@ -1,4 +1,4 @@ -.\" $FreeBSD$ +.\" $Id$ .\" .TH curs_insstr 3 "" .SH NAME diff --git a/lib/libopie/Makefile b/lib/libopie/Makefile index 6a6c982172a2..551f025cddf4 100644 --- a/lib/libopie/Makefile +++ b/lib/libopie/Makefile @@ -1,6 +1,6 @@ # Makefile for libopie # -# $FreeBSD$ +# $Id$ # OPIE_DIST?= ${.CURDIR}/../../contrib/opie DIST_DIR= ${OPIE_DIST}/${.CURDIR:T} diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile index 7ef03f3ba2ea..cd51de30df34 100644 --- a/lib/libpcap/Makefile +++ b/lib/libpcap/Makefile @@ -1,5 +1,5 @@ # Makefile for libpcap -# $FreeBSD$ +# $Id$ LIB= pcap SRCS= grammar.c tokdefs.h pcap-bpf.c \ diff --git a/lib/libpthread/man/Makefile.inc b/lib/libpthread/man/Makefile.inc index 6049dae5cb05..7d67fb8858bb 100644 --- a/lib/libpthread/man/Makefile.inc +++ b/lib/libpthread/man/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ # POSIX thread man files diff --git a/lib/libpthread/man/pthread_getspecific.3 b/lib/libpthread/man/pthread_getspecific.3 index 0b36b21211ee..b53841e0e76d 100644 --- a/lib/libpthread/man/pthread_getspecific.3 +++ b/lib/libpthread/man/pthread_getspecific.3 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 4, 1996 .Dt PTHREAD_GETSPECIFIC 3 diff --git a/lib/libpthread/thread/Makefile.inc b/lib/libpthread/thread/Makefile.inc index cd85700d2beb..3fa6df4525b6 100644 --- a/lib/libpthread/thread/Makefile.inc +++ b/lib/libpthread/thread/Makefile.inc @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ CPLUSPLUSLIB= cpluspluslib diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 1e98dcc24520..6e96c6185f40 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $FreeBSD$ +# $Id$ .PATH: ${DESTDIR}/usr/include/rpcsvc diff --git a/lib/libscsi/scsi.c b/lib/libscsi/scsi.c index 3b4c2e35c254..3293a72e9568 100644 --- a/lib/libscsi/scsi.c +++ b/lib/libscsi/scsi.c @@ -30,7 +30,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * $FreeBSD$ + * $Id$ */ #include #include diff --git a/lib/libskey/pathnames.h b/lib/libskey/pathnames.h index ca91fccd9e6d..84f0d3203b7b 100644 --- a/lib/libskey/pathnames.h +++ b/lib/libskey/pathnames.h @@ -1,4 +1,4 @@ -/* $FreeBSD$ (FreeBSD) */ +/* $Id$ (FreeBSD) */ #include diff --git a/lib/libskey/skey.3 b/lib/libskey/skey.3 index af8dc6a0c31e..e8660d94bcb3 100644 --- a/lib/libskey/skey.3 +++ b/lib/libskey/skey.3 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 22, 1996 .Dt SKEY 3 diff --git a/lib/libss/Makefile b/lib/libss/Makefile index 78583e704190..979238b6493d 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= ss SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ diff --git a/lib/libtcl/Makefile b/lib/libtcl/Makefile index 0b9c1fc151c8..6388cced71b9 100644 --- a/lib/libtcl/Makefile +++ b/lib/libtcl/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ # # This file is generated automatically, do not edit it here! # diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile index c790e5459ffa..eff83a83fc73 100644 --- a/lib/libtelnet/Makefile +++ b/lib/libtelnet/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 12/15/93 -# $FreeBSD$ +# $Id$ LIB= telnet SRCS= genget.c getent.c misc.c diff --git a/lib/libtermcap/termcap.h b/lib/libtermcap/termcap.h index 1f2dbebde725..9db594c5aedd 100644 --- a/lib/libtermcap/termcap.h +++ b/lib/libtermcap/termcap.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $FreeBSD$ */ +/* $Id$ */ #ifndef _TERMCAP_H_ #define _TERMCAP_H_ diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index 1235b666eea2..bcaf0d99e646 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -18,7 +18,7 @@ * 5. Modifications may be freely made to this file providing the above * conditions are met. * - * $FreeBSD$ + * $Id$ */ #ifndef _LIBUTIL_H_ diff --git a/lib/libutil/login.3 b/lib/libutil/login.3 index c8f592c0bd20..faec5bb0cd5f 100644 --- a/lib/libutil/login.3 +++ b/lib/libutil/login.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd December 29, 1996 .Os diff --git a/lib/libutil/login.conf.5 b/lib/libutil/login.conf.5 index c584cdaf5bb4..d56e94f59978 100644 --- a/lib/libutil/login.conf.5 +++ b/lib/libutil/login.conf.5 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd November 22, 1996 .Dt LOGIN.CONF 5 diff --git a/lib/libutil/login_auth.3 b/lib/libutil/login_auth.3 index 79ad941ccb50..14a2a63fcf0f 100644 --- a/lib/libutil/login_auth.3 +++ b/lib/libutil/login_auth.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 29, 1996 .Os FreeBSD diff --git a/lib/libutil/login_auth.c b/lib/libutil/login_auth.c index 6488785c2847..565ddc3290bf 100644 --- a/lib/libutil/login_auth.c +++ b/lib/libutil/login_auth.c @@ -21,7 +21,7 @@ * * Low-level routines relating to the user capabilities database * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libutil/login_cap.3 b/lib/libutil/login_cap.3 index b9401898e2aa..35bbc587438a 100644 --- a/lib/libutil/login_cap.3 +++ b/lib/libutil/login_cap.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 27, 1996 .Os FreeBSD diff --git a/lib/libutil/login_cap.c b/lib/libutil/login_cap.c index 71e3f8ae4a50..0ded0bdeb54e 100644 --- a/lib/libutil/login_cap.c +++ b/lib/libutil/login_cap.c @@ -21,7 +21,7 @@ * * Low-level routines relating to the user capabilities database * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libutil/login_class.3 b/lib/libutil/login_class.3 index bb8db655458f..8015542bf36f 100644 --- a/lib/libutil/login_class.3 +++ b/lib/libutil/login_class.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 28, 1996 .Os FreeBSD diff --git a/lib/libutil/login_class.c b/lib/libutil/login_class.c index 9c8133bc9b31..cf6d6d607f46 100644 --- a/lib/libutil/login_class.c +++ b/lib/libutil/login_class.c @@ -21,7 +21,7 @@ * * High-level routines relating to use of the user capabilities database * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libutil/login_ok.3 b/lib/libutil/login_ok.3 index b74ab3930520..f90710f56ad7 100644 --- a/lib/libutil/login_ok.3 +++ b/lib/libutil/login_ok.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd January 2, 1997 .Os FreeBSD diff --git a/lib/libutil/login_ok.c b/lib/libutil/login_ok.c index 1110c5d9140d..cf778dab43ec 100644 --- a/lib/libutil/login_ok.c +++ b/lib/libutil/login_ok.c @@ -20,7 +20,7 @@ * * Support allow/deny lists in login class capabilities * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libutil/login_times.3 b/lib/libutil/login_times.3 index e9839cd5ff6a..e2e7a3f88503 100644 --- a/lib/libutil/login_times.3 +++ b/lib/libutil/login_times.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd January 2, 1997 .Os FreeBSD diff --git a/lib/libutil/login_times.c b/lib/libutil/login_times.c index eb3cb11496af..c21524c90d45 100644 --- a/lib/libutil/login_times.c +++ b/lib/libutil/login_times.c @@ -20,7 +20,7 @@ * * Login period parsing and comparison functions. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/libutil/login_tty.3 b/lib/libutil/login_tty.3 index 2cde93f43e43..8a4c8fe1b3d8 100644 --- a/lib/libutil/login_tty.3 +++ b/lib/libutil/login_tty.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd December 29, 1996 .Os diff --git a/lib/libutil/logout.3 b/lib/libutil/logout.3 index 7aef4c96bca4..3284ab26fe36 100644 --- a/lib/libutil/logout.3 +++ b/lib/libutil/logout.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd December 29, 1996 .Os diff --git a/lib/libutil/logwtmp.3 b/lib/libutil/logwtmp.3 index 1fa0f5821ef6..815e672d350e 100644 --- a/lib/libutil/logwtmp.3 +++ b/lib/libutil/logwtmp.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd December 29, 1996 .Os diff --git a/lib/libutil/pty.3 b/lib/libutil/pty.3 index e3484f02d07a..74c8f97471bf 100644 --- a/lib/libutil/pty.3 +++ b/lib/libutil/pty.3 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" " .Dd December 29, 1996 .Os diff --git a/lib/libutil/setproctitle.3 b/lib/libutil/setproctitle.3 index f4cc850ef8ef..894b9335839b 100644 --- a/lib/libutil/setproctitle.3 +++ b/lib/libutil/setproctitle.3 @@ -17,7 +17,7 @@ .\" 5. Modifications may be freely made to this file providing the above .\" conditions are met. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .\" The following requests are required for all man pages. .Dd December 16, 1995 diff --git a/lib/libutil/setproctitle.c b/lib/libutil/setproctitle.c index cf3069b18f5c..ba21d1c01b8a 100644 --- a/lib/libutil/setproctitle.c +++ b/lib/libutil/setproctitle.c @@ -14,7 +14,7 @@ * 3. Absolutely no warranty of function or purpose is made by the author * Peter Wemm. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/liby/Makefile b/lib/liby/Makefile index 024fe34b6cc6..eebde5e235b6 100644 --- a/lib/liby/Makefile +++ b/lib/liby/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ LIB= y SHLIB_MAJOR= 2 diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 8ff8a00e3caf..0ece8d6c8c24 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.1beta 93/09/24 -# $FreeBSD$ +# $Id$ # # ==================================================== # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. diff --git a/lib/msun/i387/e_acos.S b/lib/msun/i387/e_acos.S index 774c65918967..b8bd06742572 100644 --- a/lib/msun/i387/e_acos.S +++ b/lib/msun/i387/e_acos.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") /* * acos(x) = atan2(sqrt(1 - x^2, x). diff --git a/lib/msun/i387/e_asin.S b/lib/msun/i387/e_asin.S index de031cf9f4bc..40e33277b92e 100644 --- a/lib/msun/i387/e_asin.S +++ b/lib/msun/i387/e_asin.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") /* * asin(x) = atan2(x, sqrt(1 - x^2). diff --git a/lib/msun/i387/e_atan2.S b/lib/msun/i387/e_atan2.S index 01b0862d858c..b553dfcc6c53 100644 --- a/lib/msun/i387/e_atan2.S +++ b/lib/msun/i387/e_atan2.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_atan2) fldl 4(%esp) diff --git a/lib/msun/i387/e_exp.S b/lib/msun/i387/e_exp.S index c9a652691833..d458e57c65aa 100644 --- a/lib/msun/i387/e_exp.S +++ b/lib/msun/i387/e_exp.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") /* e^x = 2^(x * log2(e)) */ ENTRY(__ieee754_exp) diff --git a/lib/msun/i387/e_fmod.S b/lib/msun/i387/e_fmod.S index 2a5b23f5684f..612ef9827e5b 100644 --- a/lib/msun/i387/e_fmod.S +++ b/lib/msun/i387/e_fmod.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_fmod) fldl 12(%esp) diff --git a/lib/msun/i387/e_log.S b/lib/msun/i387/e_log.S index a57ebc1b2959..2be257c39e98 100644 --- a/lib/msun/i387/e_log.S +++ b/lib/msun/i387/e_log.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_log) fldln2 diff --git a/lib/msun/i387/e_log10.S b/lib/msun/i387/e_log10.S index a8f5441c9b19..213e9f50993f 100644 --- a/lib/msun/i387/e_log10.S +++ b/lib/msun/i387/e_log10.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_log10) fldlg2 diff --git a/lib/msun/i387/e_remainder.S b/lib/msun/i387/e_remainder.S index 7bb862422e1b..34e4e346fa93 100644 --- a/lib/msun/i387/e_remainder.S +++ b/lib/msun/i387/e_remainder.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_remainder) fldl 12(%esp) diff --git a/lib/msun/i387/e_scalb.S b/lib/msun/i387/e_scalb.S index 878eb2567f76..3ff7b6f34e75 100644 --- a/lib/msun/i387/e_scalb.S +++ b/lib/msun/i387/e_scalb.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_scalb) fldl 12(%esp) diff --git a/lib/msun/i387/e_sqrt.S b/lib/msun/i387/e_sqrt.S index a7c52713e012..5760e790997c 100644 --- a/lib/msun/i387/e_sqrt.S +++ b/lib/msun/i387/e_sqrt.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(__ieee754_sqrt) fldl 4(%esp) diff --git a/lib/msun/i387/s_atan.S b/lib/msun/i387/s_atan.S index 417e862a3041..63f684927903 100644 --- a/lib/msun/i387/s_atan.S +++ b/lib/msun/i387/s_atan.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(atan) fldl 4(%esp) diff --git a/lib/msun/i387/s_ceil.S b/lib/msun/i387/s_ceil.S index 2bac97c1bbb2..0161c1047e73 100644 --- a/lib/msun/i387/s_ceil.S +++ b/lib/msun/i387/s_ceil.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(ceil) pushl %ebp diff --git a/lib/msun/i387/s_copysign.S b/lib/msun/i387/s_copysign.S index 2698fe7b6e63..eb71e5cb2f5b 100644 --- a/lib/msun/i387/s_copysign.S +++ b/lib/msun/i387/s_copysign.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(copysign) movl 16(%esp),%edx diff --git a/lib/msun/i387/s_cos.S b/lib/msun/i387/s_cos.S index 23a8b1353125..09f3bf9ddc09 100644 --- a/lib/msun/i387/s_cos.S +++ b/lib/msun/i387/s_cos.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(cos) fldl 4(%esp) diff --git a/lib/msun/i387/s_finite.S b/lib/msun/i387/s_finite.S index 578691015a45..e22a0630b674 100644 --- a/lib/msun/i387/s_finite.S +++ b/lib/msun/i387/s_finite.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(finite) movl 8(%esp),%eax diff --git a/lib/msun/i387/s_floor.S b/lib/msun/i387/s_floor.S index cdc15697ee7a..56b4a41c66da 100644 --- a/lib/msun/i387/s_floor.S +++ b/lib/msun/i387/s_floor.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(floor) pushl %ebp diff --git a/lib/msun/i387/s_ilogb.S b/lib/msun/i387/s_ilogb.S index eaa237af4031..67b232ed3f36 100644 --- a/lib/msun/i387/s_ilogb.S +++ b/lib/msun/i387/s_ilogb.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(ilogb) pushl %ebp diff --git a/lib/msun/i387/s_log1p.S b/lib/msun/i387/s_log1p.S index 3ff540191f80..a9194a34df76 100644 --- a/lib/msun/i387/s_log1p.S +++ b/lib/msun/i387/s_log1p.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") /* * The fyl2xp1 instruction has such a limited range: diff --git a/lib/msun/i387/s_logb.S b/lib/msun/i387/s_logb.S index 9fff544a866c..1d5ecbf92101 100644 --- a/lib/msun/i387/s_logb.S +++ b/lib/msun/i387/s_logb.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(logb) fldl 4(%esp) diff --git a/lib/msun/i387/s_rint.S b/lib/msun/i387/s_rint.S index b30d545aab73..1e10b5695666 100644 --- a/lib/msun/i387/s_rint.S +++ b/lib/msun/i387/s_rint.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(rint) fldl 4(%esp) diff --git a/lib/msun/i387/s_scalbn.S b/lib/msun/i387/s_scalbn.S index 5b11ae8e2350..cc539896ca81 100644 --- a/lib/msun/i387/s_scalbn.S +++ b/lib/msun/i387/s_scalbn.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(scalbn) fildl 12(%esp) diff --git a/lib/msun/i387/s_significand.S b/lib/msun/i387/s_significand.S index ebed94998161..456b3ba805b2 100644 --- a/lib/msun/i387/s_significand.S +++ b/lib/msun/i387/s_significand.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(significand) fldl 4(%esp) diff --git a/lib/msun/i387/s_sin.S b/lib/msun/i387/s_sin.S index 412b3328639f..d79a8f05d696 100644 --- a/lib/msun/i387/s_sin.S +++ b/lib/msun/i387/s_sin.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(sin) fldl 4(%esp) diff --git a/lib/msun/i387/s_tan.S b/lib/msun/i387/s_tan.S index eb093ce4df45..416966378af4 100644 --- a/lib/msun/i387/s_tan.S +++ b/lib/msun/i387/s_tan.S @@ -35,7 +35,7 @@ #include -RCSID("$FreeBSD$") +RCSID("$Id$") ENTRY(tan) fldl 4(%esp) diff --git a/lib/msun/man/acos.3 b/lib/msun/man/acos.3 index f5a8c32c8ddf..1af095e7683f 100644 --- a/lib/msun/man/acos.3 +++ b/lib/msun/man/acos.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)acos.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt ACOS 3 diff --git a/lib/msun/man/acosh.3 b/lib/msun/man/acosh.3 index d8b15df13930..9ac3247a0038 100644 --- a/lib/msun/man/acosh.3 +++ b/lib/msun/man/acosh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)acosh.3 5.2 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1991 .Dt ACOSH 3 diff --git a/lib/msun/man/asin.3 b/lib/msun/man/asin.3 index 4e01a4945ef4..eeb4f7c5bbf8 100644 --- a/lib/msun/man/asin.3 +++ b/lib/msun/man/asin.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)asin.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt ASIN 3 diff --git a/lib/msun/man/asinh.3 b/lib/msun/man/asinh.3 index b710423a8e1c..d122497bc579 100644 --- a/lib/msun/man/asinh.3 +++ b/lib/msun/man/asinh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)asinh.3 6.4 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1991 .Dt ASINH 3 diff --git a/lib/msun/man/atan.3 b/lib/msun/man/atan.3 index c506f8797e3a..b68bf341b965 100644 --- a/lib/msun/man/atan.3 +++ b/lib/msun/man/atan.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)atan.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt ATAN 3 diff --git a/lib/msun/man/atan2.3 b/lib/msun/man/atan2.3 index 48e5c9d097b2..75e556c72e5d 100644 --- a/lib/msun/man/atan2.3 +++ b/lib/msun/man/atan2.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)atan2.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt ATAN2 3 diff --git a/lib/msun/man/atanh.3 b/lib/msun/man/atanh.3 index 0160151d67ef..9c8acf379d6f 100644 --- a/lib/msun/man/atanh.3 +++ b/lib/msun/man/atanh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)atanh.3 5.2 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1991 .Dt ATANH 3 diff --git a/lib/msun/man/ceil.3 b/lib/msun/man/ceil.3 index 940929a95af8..0af3a5eef44e 100644 --- a/lib/msun/man/ceil.3 +++ b/lib/msun/man/ceil.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)ceil.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd March 10, 1994 .Dt CEIL 3 diff --git a/lib/msun/man/cos.3 b/lib/msun/man/cos.3 index b3877b549327..8d8ba594b590 100644 --- a/lib/msun/man/cos.3 +++ b/lib/msun/man/cos.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)cos.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt COS 3 diff --git a/lib/msun/man/cosh.3 b/lib/msun/man/cosh.3 index 06c0453fbaa8..e515f713bf0e 100644 --- a/lib/msun/man/cosh.3 +++ b/lib/msun/man/cosh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)cosh.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt COSH 3 diff --git a/lib/msun/man/erf.3 b/lib/msun/man/erf.3 index 82066a19a323..c63aacc9ab27 100644 --- a/lib/msun/man/erf.3 +++ b/lib/msun/man/erf.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)erf.3 6.4 (Berkeley) 4/20/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 20, 1991 .Dt ERF 3 diff --git a/lib/msun/man/exp.3 b/lib/msun/man/exp.3 index c5277ff8b202..9e38d643577b 100644 --- a/lib/msun/man/exp.3 +++ b/lib/msun/man/exp.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)exp.3 6.12 (Berkeley) 7/31/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd July 31, 1991 .Dt EXP 3 diff --git a/lib/msun/man/fabs.3 b/lib/msun/man/fabs.3 index 513fef3efd91..e7cd317c989a 100644 --- a/lib/msun/man/fabs.3 +++ b/lib/msun/man/fabs.3 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)fabs.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt FABS 3 diff --git a/lib/msun/man/floor.3 b/lib/msun/man/floor.3 index 60fbd58b8ea5..71080f097ead 100644 --- a/lib/msun/man/floor.3 +++ b/lib/msun/man/floor.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)floor.3 6.5 (Berkeley) 4/19/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd March 10, 1994 .Dt FLOOR 3 diff --git a/lib/msun/man/fmod.3 b/lib/msun/man/fmod.3 index f14bb940e52f..61cdfa0af531 100644 --- a/lib/msun/man/fmod.3 +++ b/lib/msun/man/fmod.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)fmod.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt FMOD 3 diff --git a/lib/msun/man/hypot.3 b/lib/msun/man/hypot.3 index a43964700dd8..bebd1dba6056 100644 --- a/lib/msun/man/hypot.3 +++ b/lib/msun/man/hypot.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)hypot.3 6.7 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1991 .Dt HYPOT 3 diff --git a/lib/msun/man/ieee.3 b/lib/msun/man/ieee.3 index b17a3f84973b..c983a3f0e4b1 100644 --- a/lib/msun/man/ieee.3 +++ b/lib/msun/man/ieee.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)ieee.3 6.4 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd Feb 25, 1994 .Dt IEEE 3 diff --git a/lib/msun/man/ieee_test.3 b/lib/msun/man/ieee_test.3 index d27160eb8b67..c2c7e497afaf 100644 --- a/lib/msun/man/ieee_test.3 +++ b/lib/msun/man/ieee_test.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)ieee.3 6.4 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd March 10, 1994 .Dt IEEE_TEST 3 diff --git a/lib/msun/man/j0.3 b/lib/msun/man/j0.3 index f9d3a44962ab..54088c3afd9b 100644 --- a/lib/msun/man/j0.3 +++ b/lib/msun/man/j0.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)j0.3 6.7 (Berkeley) 4/19/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1991 .Dt J0 3 diff --git a/lib/msun/man/lgamma.3 b/lib/msun/man/lgamma.3 index ed4c227b5757..e9bae125e5db 100644 --- a/lib/msun/man/lgamma.3 +++ b/lib/msun/man/lgamma.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)lgamma.3 6.6 (Berkeley) 12/3/92 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd December 3, 1992 .Dt LGAMMA 3 diff --git a/lib/msun/man/math.3 b/lib/msun/man/math.3 index 975269b3261c..a692b5f869ad 100644 --- a/lib/msun/man/math.3 +++ b/lib/msun/man/math.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)math.3 6.10 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .TH MATH 3M "May 6, 1991" .UC 4 diff --git a/lib/msun/man/rint.3 b/lib/msun/man/rint.3 index 2d2c5117c4e0..5aa591d3fad9 100644 --- a/lib/msun/man/rint.3 +++ b/lib/msun/man/rint.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)rint.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd March 10, 1994 .Dt RINT 3 diff --git a/lib/msun/man/sin.3 b/lib/msun/man/sin.3 index 2f1fbb452042..222f24baa0f6 100644 --- a/lib/msun/man/sin.3 +++ b/lib/msun/man/sin.3 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)sin.3 6.7 (Berkeley) 4/19/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 19, 1991 .Dt SIN 3 diff --git a/lib/msun/man/sinh.3 b/lib/msun/man/sinh.3 index a48dbaead0b2..91b17f1af594 100644 --- a/lib/msun/man/sinh.3 +++ b/lib/msun/man/sinh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)sinh.3 6.6 (Berkeley) 4/19/91 -.\" $FreeBSD$ +.\" $Id$ .Dd April 19, 1991 .Dt SINH 3 .Os diff --git a/lib/msun/man/sqrt.3 b/lib/msun/man/sqrt.3 index bdeeba9ced44..d3e698d7968e 100644 --- a/lib/msun/man/sqrt.3 +++ b/lib/msun/man/sqrt.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)sqrt.3 6.4 (Berkeley) 5/6/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 6, 1991 .Dt SQRT 3 diff --git a/lib/msun/man/tan.3 b/lib/msun/man/tan.3 index 3942a387d486..21af6393e90d 100644 --- a/lib/msun/man/tan.3 +++ b/lib/msun/man/tan.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)tan.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt TAN 3 diff --git a/lib/msun/man/tanh.3 b/lib/msun/man/tanh.3 index 7ed21fc88591..3d5f90263acd 100644 --- a/lib/msun/man/tanh.3 +++ b/lib/msun/man/tanh.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)tanh.3 5.1 (Berkeley) 5/2/91 -.\" $FreeBSD$ +.\" $Id$ .\" .Dd May 2, 1991 .Dt TANH 3 diff --git a/lib/msun/src/e_acos.c b/lib/msun/src/e_acos.c index 4ed7724de13e..e39dc4cddccf 100644 --- a/lib/msun/src/e_acos.c +++ b/lib/msun/src/e_acos.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_acos(x) diff --git a/lib/msun/src/e_acosf.c b/lib/msun/src/e_acosf.c index 435f0adbcf8a..04107dd7959d 100644 --- a/lib/msun/src/e_acosf.c +++ b/lib/msun/src/e_acosf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_acosh.c b/lib/msun/src/e_acosh.c index d7f826a2441b..adaf75d3d76b 100644 --- a/lib/msun/src/e_acosh.c +++ b/lib/msun/src/e_acosh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_acosh(x) diff --git a/lib/msun/src/e_acoshf.c b/lib/msun/src/e_acoshf.c index 3f9b7355461e..ba4006b7cab3 100644 --- a/lib/msun/src/e_acoshf.c +++ b/lib/msun/src/e_acoshf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_asin.c b/lib/msun/src/e_asin.c index ef2d932fed23..deceaee3f2a9 100644 --- a/lib/msun/src/e_asin.c +++ b/lib/msun/src/e_asin.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_asin(x) diff --git a/lib/msun/src/e_asinf.c b/lib/msun/src/e_asinf.c index 274946f13a44..d613a1069303 100644 --- a/lib/msun/src/e_asinf.c +++ b/lib/msun/src/e_asinf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_atan2.c b/lib/msun/src/e_atan2.c index b07d543bfcb2..d85db89500eb 100644 --- a/lib/msun/src/e_atan2.c +++ b/lib/msun/src/e_atan2.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_atan2(y,x) diff --git a/lib/msun/src/e_atan2f.c b/lib/msun/src/e_atan2f.c index 6e6c181bde04..674243249286 100644 --- a/lib/msun/src/e_atan2f.c +++ b/lib/msun/src/e_atan2f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_atanh.c b/lib/msun/src/e_atanh.c index 97a79f0f9e4b..0c683e17b312 100644 --- a/lib/msun/src/e_atanh.c +++ b/lib/msun/src/e_atanh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_atanh(x) diff --git a/lib/msun/src/e_atanhf.c b/lib/msun/src/e_atanhf.c index dc55b3b6706e..d4126afb33e5 100644 --- a/lib/msun/src/e_atanhf.c +++ b/lib/msun/src/e_atanhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_cosh.c b/lib/msun/src/e_cosh.c index 47723c53d7fc..3a7ac972ed74 100644 --- a/lib/msun/src/e_cosh.c +++ b/lib/msun/src/e_cosh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_cosh(x) diff --git a/lib/msun/src/e_coshf.c b/lib/msun/src/e_coshf.c index 9ea041626656..501d87bd057c 100644 --- a/lib/msun/src/e_coshf.c +++ b/lib/msun/src/e_coshf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_exp.c b/lib/msun/src/e_exp.c index 2fc04c61dbb0..e0d64695520d 100644 --- a/lib/msun/src/e_exp.c +++ b/lib/msun/src/e_exp.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_exp(x) diff --git a/lib/msun/src/e_expf.c b/lib/msun/src/e_expf.c index 8f37f6f11470..24e9096e72c7 100644 --- a/lib/msun/src/e_expf.c +++ b/lib/msun/src/e_expf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_fmod.c b/lib/msun/src/e_fmod.c index f16863072963..4f65de1f2a00 100644 --- a/lib/msun/src/e_fmod.c +++ b/lib/msun/src/e_fmod.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/e_fmodf.c b/lib/msun/src/e_fmodf.c index 01d85d07d058..2c0bd81c88d9 100644 --- a/lib/msun/src/e_fmodf.c +++ b/lib/msun/src/e_fmodf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/e_gamma.c b/lib/msun/src/e_gamma.c index bad4569e5175..6401d5966c42 100644 --- a/lib/msun/src/e_gamma.c +++ b/lib/msun/src/e_gamma.c @@ -12,7 +12,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_gamma(x) diff --git a/lib/msun/src/e_gamma_r.c b/lib/msun/src/e_gamma_r.c index 7d5197f88cf3..d1334f308462 100644 --- a/lib/msun/src/e_gamma_r.c +++ b/lib/msun/src/e_gamma_r.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_gamma_r(x, signgamp) diff --git a/lib/msun/src/e_gammaf.c b/lib/msun/src/e_gammaf.c index f05ebefdcd99..97731d9d0f66 100644 --- a/lib/msun/src/e_gammaf.c +++ b/lib/msun/src/e_gammaf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_gammaf(x) diff --git a/lib/msun/src/e_gammaf_r.c b/lib/msun/src/e_gammaf_r.c index 6847aa79ddd7..4e2e4a7204fe 100644 --- a/lib/msun/src/e_gammaf_r.c +++ b/lib/msun/src/e_gammaf_r.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_gammaf_r(x, signgamp) diff --git a/lib/msun/src/e_hypot.c b/lib/msun/src/e_hypot.c index 1f7e1453d4b6..45d921f77106 100644 --- a/lib/msun/src/e_hypot.c +++ b/lib/msun/src/e_hypot.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_hypot(x,y) diff --git a/lib/msun/src/e_hypotf.c b/lib/msun/src/e_hypotf.c index b6a3df67b6a3..747f8f6f9650 100644 --- a/lib/msun/src/e_hypotf.c +++ b/lib/msun/src/e_hypotf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_j0.c b/lib/msun/src/e_j0.c index 1747d784d6bb..ecbc9b72bdae 100644 --- a/lib/msun/src/e_j0.c +++ b/lib/msun/src/e_j0.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_j0(x), __ieee754_y0(x) diff --git a/lib/msun/src/e_j0f.c b/lib/msun/src/e_j0f.c index ad27122ac163..cdfedd96375a 100644 --- a/lib/msun/src/e_j0f.c +++ b/lib/msun/src/e_j0f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_j1.c b/lib/msun/src/e_j1.c index 6d60a785bf56..8af45609c680 100644 --- a/lib/msun/src/e_j1.c +++ b/lib/msun/src/e_j1.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_j1(x), __ieee754_y1(x) diff --git a/lib/msun/src/e_j1f.c b/lib/msun/src/e_j1f.c index 2d4b93aec31d..137b5f897fae 100644 --- a/lib/msun/src/e_j1f.c +++ b/lib/msun/src/e_j1f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_jn.c b/lib/msun/src/e_jn.c index cfe26e81f583..2265639764c9 100644 --- a/lib/msun/src/e_jn.c +++ b/lib/msun/src/e_jn.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/e_jnf.c b/lib/msun/src/e_jnf.c index 03ed9308c88e..544d6e508424 100644 --- a/lib/msun/src/e_jnf.c +++ b/lib/msun/src/e_jnf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_lgamma.c b/lib/msun/src/e_lgamma.c index ca25a43c0078..1bf264bb844f 100644 --- a/lib/msun/src/e_lgamma.c +++ b/lib/msun/src/e_lgamma.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_lgamma(x) diff --git a/lib/msun/src/e_lgamma_r.c b/lib/msun/src/e_lgamma_r.c index a66465589081..ab6d2f0e7f58 100644 --- a/lib/msun/src/e_lgamma_r.c +++ b/lib/msun/src/e_lgamma_r.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_lgamma_r(x, signgamp) diff --git a/lib/msun/src/e_lgammaf.c b/lib/msun/src/e_lgammaf.c index dde3f95ba2f1..c44054e1e6e6 100644 --- a/lib/msun/src/e_lgammaf.c +++ b/lib/msun/src/e_lgammaf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_lgammaf(x) diff --git a/lib/msun/src/e_lgammaf_r.c b/lib/msun/src/e_lgammaf_r.c index 0e578880568f..9fbe798c11a9 100644 --- a/lib/msun/src/e_lgammaf_r.c +++ b/lib/msun/src/e_lgammaf_r.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_log.c b/lib/msun/src/e_log.c index 6ebeb910d020..93294a2ae57c 100644 --- a/lib/msun/src/e_log.c +++ b/lib/msun/src/e_log.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_log(x) diff --git a/lib/msun/src/e_log10.c b/lib/msun/src/e_log10.c index 5c02df8c33fb..afc33764d9a2 100644 --- a/lib/msun/src/e_log10.c +++ b/lib/msun/src/e_log10.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_log10(x) diff --git a/lib/msun/src/e_log10f.c b/lib/msun/src/e_log10f.c index 8b11d3817cf6..ed5f3e75da31 100644 --- a/lib/msun/src/e_log10f.c +++ b/lib/msun/src/e_log10f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_logf.c b/lib/msun/src/e_logf.c index 4a286a6a97e5..48a0d86a9690 100644 --- a/lib/msun/src/e_logf.c +++ b/lib/msun/src/e_logf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_pow.c b/lib/msun/src/e_pow.c index 8371e3e14fcd..1ec39b1ebf6e 100644 --- a/lib/msun/src/e_pow.c +++ b/lib/msun/src/e_pow.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_pow(x,y) return x**y diff --git a/lib/msun/src/e_powf.c b/lib/msun/src/e_powf.c index 20e402902cfd..508e8fd7d1ea 100644 --- a/lib/msun/src/e_powf.c +++ b/lib/msun/src/e_powf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_rem_pio2.c b/lib/msun/src/e_rem_pio2.c index 0d182de316ed..1ee6ce315496 100644 --- a/lib/msun/src/e_rem_pio2.c +++ b/lib/msun/src/e_rem_pio2.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_rem_pio2(x,y) diff --git a/lib/msun/src/e_rem_pio2f.c b/lib/msun/src/e_rem_pio2f.c index cf9cecc36c86..49e698fdfa54 100644 --- a/lib/msun/src/e_rem_pio2f.c +++ b/lib/msun/src/e_rem_pio2f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_rem_pio2f(x,y) diff --git a/lib/msun/src/e_remainder.c b/lib/msun/src/e_remainder.c index c41d392adc58..4b603a0deddf 100644 --- a/lib/msun/src/e_remainder.c +++ b/lib/msun/src/e_remainder.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_remainder(x,p) diff --git a/lib/msun/src/e_remainderf.c b/lib/msun/src/e_remainderf.c index d5f670e8a022..ddfc8defd66c 100644 --- a/lib/msun/src/e_remainderf.c +++ b/lib/msun/src/e_remainderf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_scalb.c b/lib/msun/src/e_scalb.c index 14f167ee0d54..89a4127aee38 100644 --- a/lib/msun/src/e_scalb.c +++ b/lib/msun/src/e_scalb.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/e_scalbf.c b/lib/msun/src/e_scalbf.c index c6785703fe05..df2a54d302f8 100644 --- a/lib/msun/src/e_scalbf.c +++ b/lib/msun/src/e_scalbf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_sinh.c b/lib/msun/src/e_sinh.c index 2ac789118699..764fdc3a15b0 100644 --- a/lib/msun/src/e_sinh.c +++ b/lib/msun/src/e_sinh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_sinh(x) diff --git a/lib/msun/src/e_sinhf.c b/lib/msun/src/e_sinhf.c index fc417dee769b..26db9789daeb 100644 --- a/lib/msun/src/e_sinhf.c +++ b/lib/msun/src/e_sinhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/e_sqrt.c b/lib/msun/src/e_sqrt.c index bea3b200abbd..813017fb4ee6 100644 --- a/lib/msun/src/e_sqrt.c +++ b/lib/msun/src/e_sqrt.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __ieee754_sqrt(x) diff --git a/lib/msun/src/e_sqrtf.c b/lib/msun/src/e_sqrtf.c index b7e7d6105004..d7748e23ff71 100644 --- a/lib/msun/src/e_sqrtf.c +++ b/lib/msun/src/e_sqrtf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/get_hw_float.c b/lib/msun/src/get_hw_float.c index 6d5f0e0fb453..fea5c89a81ec 100644 --- a/lib/msun/src/get_hw_float.c +++ b/lib/msun/src/get_hw_float.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ + * $Id$ */ #include diff --git a/lib/msun/src/k_cos.c b/lib/msun/src/k_cos.c index 1694c3f489b8..f2ba37338979 100644 --- a/lib/msun/src/k_cos.c +++ b/lib/msun/src/k_cos.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/k_cosf.c b/lib/msun/src/k_cosf.c index fb49a6b9994f..65f31921280d 100644 --- a/lib/msun/src/k_cosf.c +++ b/lib/msun/src/k_cosf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/k_rem_pio2.c b/lib/msun/src/k_rem_pio2.c index 8971a84e5c75..6e46a95e8124 100644 --- a/lib/msun/src/k_rem_pio2.c +++ b/lib/msun/src/k_rem_pio2.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/k_rem_pio2f.c b/lib/msun/src/k_rem_pio2f.c index 00144974a05e..1ae7ade545d6 100644 --- a/lib/msun/src/k_rem_pio2f.c +++ b/lib/msun/src/k_rem_pio2f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/k_sin.c b/lib/msun/src/k_sin.c index df2dc26b751c..b2f05e6f764d 100644 --- a/lib/msun/src/k_sin.c +++ b/lib/msun/src/k_sin.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __kernel_sin( x, y, iy) diff --git a/lib/msun/src/k_sinf.c b/lib/msun/src/k_sinf.c index ab81d4d265be..9317793104aa 100644 --- a/lib/msun/src/k_sinf.c +++ b/lib/msun/src/k_sinf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/k_standard.c b/lib/msun/src/k_standard.c index 2b62052d8220..84ee2a41d506 100644 --- a/lib/msun/src/k_standard.c +++ b/lib/msun/src/k_standard.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/k_tan.c b/lib/msun/src/k_tan.c index d03c3874cd5b..00ea9a4858f5 100644 --- a/lib/msun/src/k_tan.c +++ b/lib/msun/src/k_tan.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* __kernel_tan( x, y, k ) diff --git a/lib/msun/src/k_tanf.c b/lib/msun/src/k_tanf.c index bb03b9fb4962..ad585f6fd451 100644 --- a/lib/msun/src/k_tanf.c +++ b/lib/msun/src/k_tanf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 3b8d18bc88b5..6282b1058de4 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -11,7 +11,7 @@ /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $FreeBSD$ + * $Id$ */ #ifndef _MATH_H_ diff --git a/lib/msun/src/math_private.h b/lib/msun/src/math_private.h index e688a5134444..1d93957585d3 100644 --- a/lib/msun/src/math_private.h +++ b/lib/msun/src/math_private.h @@ -11,7 +11,7 @@ /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $FreeBSD$ + * $Id$ */ #ifndef _MATH_PRIVATE_H_ diff --git a/lib/msun/src/s_asinh.c b/lib/msun/src/s_asinh.c index 0b8bf301dc93..21024c4dcc3a 100644 --- a/lib/msun/src/s_asinh.c +++ b/lib/msun/src/s_asinh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* asinh(x) diff --git a/lib/msun/src/s_asinhf.c b/lib/msun/src/s_asinhf.c index 6a11a5a99ce1..80bcbaafedc7 100644 --- a/lib/msun/src/s_asinhf.c +++ b/lib/msun/src/s_asinhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_atan.c b/lib/msun/src/s_atan.c index 029fbc29b6fa..40e3de90ba64 100644 --- a/lib/msun/src/s_atan.c +++ b/lib/msun/src/s_atan.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* atan(x) diff --git a/lib/msun/src/s_atanf.c b/lib/msun/src/s_atanf.c index ff702f6e66b0..f8e103d07b21 100644 --- a/lib/msun/src/s_atanf.c +++ b/lib/msun/src/s_atanf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_cbrt.c b/lib/msun/src/s_cbrt.c index 93edad76a033..09f8d08efa94 100644 --- a/lib/msun/src/s_cbrt.c +++ b/lib/msun/src/s_cbrt.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_cbrtf.c b/lib/msun/src/s_cbrtf.c index c1c2fa1a370c..8bb1b8929dd6 100644 --- a/lib/msun/src/s_cbrtf.c +++ b/lib/msun/src/s_cbrtf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_ceil.c b/lib/msun/src/s_ceil.c index 2c59c783c88d..2fc9bcceb66c 100644 --- a/lib/msun/src/s_ceil.c +++ b/lib/msun/src/s_ceil.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_ceilf.c b/lib/msun/src/s_ceilf.c index 06993ad8c059..5925ee469b31 100644 --- a/lib/msun/src/s_ceilf.c +++ b/lib/msun/src/s_ceilf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_copysign.c b/lib/msun/src/s_copysign.c index 4f758d229d5a..c119edf9c220 100644 --- a/lib/msun/src/s_copysign.c +++ b/lib/msun/src/s_copysign.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_copysignf.c b/lib/msun/src/s_copysignf.c index ae0980fcaa80..d5eb48f5c06a 100644 --- a/lib/msun/src/s_copysignf.c +++ b/lib/msun/src/s_copysignf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_cos.c b/lib/msun/src/s_cos.c index 707af78c97f8..7e4eda9e0473 100644 --- a/lib/msun/src/s_cos.c +++ b/lib/msun/src/s_cos.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* cos(x) diff --git a/lib/msun/src/s_cosf.c b/lib/msun/src/s_cosf.c index 4091350e412b..18df5d0ed546 100644 --- a/lib/msun/src/s_cosf.c +++ b/lib/msun/src/s_cosf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_erf.c b/lib/msun/src/s_erf.c index bfe5b12bba5c..07129a3e102e 100644 --- a/lib/msun/src/s_erf.c +++ b/lib/msun/src/s_erf.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* double erf(double x) diff --git a/lib/msun/src/s_erff.c b/lib/msun/src/s_erff.c index e9cc40951328..1a3b3b28d4eb 100644 --- a/lib/msun/src/s_erff.c +++ b/lib/msun/src/s_erff.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_expm1.c b/lib/msun/src/s_expm1.c index adc879b0ecbb..bff34926f902 100644 --- a/lib/msun/src/s_expm1.c +++ b/lib/msun/src/s_expm1.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* expm1(x) diff --git a/lib/msun/src/s_expm1f.c b/lib/msun/src/s_expm1f.c index 0fc0699b9fc6..e6d8709e12a0 100644 --- a/lib/msun/src/s_expm1f.c +++ b/lib/msun/src/s_expm1f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_fabs.c b/lib/msun/src/s_fabs.c index 74e59133685e..ef15a69506fc 100644 --- a/lib/msun/src/s_fabs.c +++ b/lib/msun/src/s_fabs.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_fabsf.c b/lib/msun/src/s_fabsf.c index b14ae6e6c346..d064ba09188c 100644 --- a/lib/msun/src/s_fabsf.c +++ b/lib/msun/src/s_fabsf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_finite.c b/lib/msun/src/s_finite.c index 88e3298d5d79..b5429b4e17ee 100644 --- a/lib/msun/src/s_finite.c +++ b/lib/msun/src/s_finite.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_finitef.c b/lib/msun/src/s_finitef.c index 07038db67a59..0243993d488b 100644 --- a/lib/msun/src/s_finitef.c +++ b/lib/msun/src/s_finitef.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_floor.c b/lib/msun/src/s_floor.c index 85ace779ede2..37f0e1df0078 100644 --- a/lib/msun/src/s_floor.c +++ b/lib/msun/src/s_floor.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_floorf.c b/lib/msun/src/s_floorf.c index 116ec1dd6cb8..caa6427db09c 100644 --- a/lib/msun/src/s_floorf.c +++ b/lib/msun/src/s_floorf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_frexp.c b/lib/msun/src/s_frexp.c index 178479d316f3..c6b5244e9812 100644 --- a/lib/msun/src/s_frexp.c +++ b/lib/msun/src/s_frexp.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_frexpf.c b/lib/msun/src/s_frexpf.c index fbec6670ad96..1a1df34adbb1 100644 --- a/lib/msun/src/s_frexpf.c +++ b/lib/msun/src/s_frexpf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_ilogb.c b/lib/msun/src/s_ilogb.c index d2c82650a88b..9a10666d1d2c 100644 --- a/lib/msun/src/s_ilogb.c +++ b/lib/msun/src/s_ilogb.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* ilogb(double x) diff --git a/lib/msun/src/s_ilogbf.c b/lib/msun/src/s_ilogbf.c index a912d1a28ff9..31c044396102 100644 --- a/lib/msun/src/s_ilogbf.c +++ b/lib/msun/src/s_ilogbf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_isnan.c b/lib/msun/src/s_isnan.c index 18cfcf2ac936..212a5ee9348f 100644 --- a/lib/msun/src/s_isnan.c +++ b/lib/msun/src/s_isnan.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_isnanf.c b/lib/msun/src/s_isnanf.c index 0e48718a505a..8432c0ef0f0e 100644 --- a/lib/msun/src/s_isnanf.c +++ b/lib/msun/src/s_isnanf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_ldexp.c b/lib/msun/src/s_ldexp.c index 463170114948..8fe2d4bf0266 100644 --- a/lib/msun/src/s_ldexp.c +++ b/lib/msun/src/s_ldexp.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_ldexpf.c b/lib/msun/src/s_ldexpf.c index 5091873072fb..ff01c1d57616 100644 --- a/lib/msun/src/s_ldexpf.c +++ b/lib/msun/src/s_ldexpf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_lib_version.c b/lib/msun/src/s_lib_version.c index 29269d3d4fda..b9ca845d3147 100644 --- a/lib/msun/src/s_lib_version.c +++ b/lib/msun/src/s_lib_version.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_log1p.c b/lib/msun/src/s_log1p.c index 0a60f9512607..07bc93a4fc3e 100644 --- a/lib/msun/src/s_log1p.c +++ b/lib/msun/src/s_log1p.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* double log1p(double x) diff --git a/lib/msun/src/s_log1pf.c b/lib/msun/src/s_log1pf.c index 2923d016c58a..54b3c610df93 100644 --- a/lib/msun/src/s_log1pf.c +++ b/lib/msun/src/s_log1pf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_logb.c b/lib/msun/src/s_logb.c index 8b724f49594c..aac20e3b837b 100644 --- a/lib/msun/src/s_logb.c +++ b/lib/msun/src/s_logb.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_logbf.c b/lib/msun/src/s_logbf.c index 1d345437bb2c..5769e2dfbd1f 100644 --- a/lib/msun/src/s_logbf.c +++ b/lib/msun/src/s_logbf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_matherr.c b/lib/msun/src/s_matherr.c index 3f7a8275cd14..fbc5664bde50 100644 --- a/lib/msun/src/s_matherr.c +++ b/lib/msun/src/s_matherr.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_modf.c b/lib/msun/src/s_modf.c index 50a261d71569..d82cda3faddd 100644 --- a/lib/msun/src/s_modf.c +++ b/lib/msun/src/s_modf.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_modff.c b/lib/msun/src/s_modff.c index bedb49ffb7dd..8fd9bb0d2ba5 100644 --- a/lib/msun/src/s_modff.c +++ b/lib/msun/src/s_modff.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_nextafter.c b/lib/msun/src/s_nextafter.c index a54b82312a4e..877f7b8d18e9 100644 --- a/lib/msun/src/s_nextafter.c +++ b/lib/msun/src/s_nextafter.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* IEEE functions diff --git a/lib/msun/src/s_nextafterf.c b/lib/msun/src/s_nextafterf.c index d976a20167c2..e9fd541066ba 100644 --- a/lib/msun/src/s_nextafterf.c +++ b/lib/msun/src/s_nextafterf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_rint.c b/lib/msun/src/s_rint.c index aa4145209528..a2891027b8e4 100644 --- a/lib/msun/src/s_rint.c +++ b/lib/msun/src/s_rint.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_rintf.c b/lib/msun/src/s_rintf.c index 3bb8b1cd374b..9db496a9256f 100644 --- a/lib/msun/src/s_rintf.c +++ b/lib/msun/src/s_rintf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_scalbn.c b/lib/msun/src/s_scalbn.c index b69bdcd58cdb..3159215be411 100644 --- a/lib/msun/src/s_scalbn.c +++ b/lib/msun/src/s_scalbn.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_scalbnf.c b/lib/msun/src/s_scalbnf.c index 7dd75956df3f..af1b099e6839 100644 --- a/lib/msun/src/s_scalbnf.c +++ b/lib/msun/src/s_scalbnf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_significand.c b/lib/msun/src/s_significand.c index 64d4623e857f..4bbf36dff2f9 100644 --- a/lib/msun/src/s_significand.c +++ b/lib/msun/src/s_significand.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/s_significandf.c b/lib/msun/src/s_significandf.c index 73cfa71c33b3..ce46be80bd1d 100644 --- a/lib/msun/src/s_significandf.c +++ b/lib/msun/src/s_significandf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_sin.c b/lib/msun/src/s_sin.c index e6b099edb527..d12a49509cb0 100644 --- a/lib/msun/src/s_sin.c +++ b/lib/msun/src/s_sin.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* sin(x) diff --git a/lib/msun/src/s_sinf.c b/lib/msun/src/s_sinf.c index ba3adffc1b60..d6ac1a0dec62 100644 --- a/lib/msun/src/s_sinf.c +++ b/lib/msun/src/s_sinf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_tan.c b/lib/msun/src/s_tan.c index e02584e3116f..f63a213f2d84 100644 --- a/lib/msun/src/s_tan.c +++ b/lib/msun/src/s_tan.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* tan(x) diff --git a/lib/msun/src/s_tanf.c b/lib/msun/src/s_tanf.c index 65ab1bf925e0..e7f51c73a565 100644 --- a/lib/msun/src/s_tanf.c +++ b/lib/msun/src/s_tanf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/s_tanh.c b/lib/msun/src/s_tanh.c index 4f58fcffeecb..8eb3197a2085 100644 --- a/lib/msun/src/s_tanh.c +++ b/lib/msun/src/s_tanh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* Tanh(x) diff --git a/lib/msun/src/s_tanhf.c b/lib/msun/src/s_tanhf.c index cdfd5f6c09aa..f8b41c89bf7f 100644 --- a/lib/msun/src/s_tanhf.c +++ b/lib/msun/src/s_tanhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/w_acos.c b/lib/msun/src/w_acos.c index 3e8c6e53cf69..21f2ff4daf45 100644 --- a/lib/msun/src/w_acos.c +++ b/lib/msun/src/w_acos.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_acosf.c b/lib/msun/src/w_acosf.c index c2292c655d5f..70d2f130f81b 100644 --- a/lib/msun/src/w_acosf.c +++ b/lib/msun/src/w_acosf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_acosh.c b/lib/msun/src/w_acosh.c index 197d6d75e2fa..5533f2204771 100644 --- a/lib/msun/src/w_acosh.c +++ b/lib/msun/src/w_acosh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_acoshf.c b/lib/msun/src/w_acoshf.c index 08798899ff31..73b2f06c2d29 100644 --- a/lib/msun/src/w_acoshf.c +++ b/lib/msun/src/w_acoshf.c @@ -15,7 +15,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_asin.c b/lib/msun/src/w_asin.c index d5b25238ab2d..3620c0043b64 100644 --- a/lib/msun/src/w_asin.c +++ b/lib/msun/src/w_asin.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_asinf.c b/lib/msun/src/w_asinf.c index 6972cb9d6b3d..02392bbb3234 100644 --- a/lib/msun/src/w_asinf.c +++ b/lib/msun/src/w_asinf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_atan2.c b/lib/msun/src/w_atan2.c index 8f4c826f494e..1405d1c25f15 100644 --- a/lib/msun/src/w_atan2.c +++ b/lib/msun/src/w_atan2.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_atan2f.c b/lib/msun/src/w_atan2f.c index 45e5a14d9b99..bba9f3b30381 100644 --- a/lib/msun/src/w_atan2f.c +++ b/lib/msun/src/w_atan2f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_atanh.c b/lib/msun/src/w_atanh.c index d96c9b77cee4..ba2aca927dc5 100644 --- a/lib/msun/src/w_atanh.c +++ b/lib/msun/src/w_atanh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_atanhf.c b/lib/msun/src/w_atanhf.c index 9da087b28517..9556e3457b52 100644 --- a/lib/msun/src/w_atanhf.c +++ b/lib/msun/src/w_atanhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_cosh.c b/lib/msun/src/w_cosh.c index f20d4c52c4a2..07116877e336 100644 --- a/lib/msun/src/w_cosh.c +++ b/lib/msun/src/w_cosh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_coshf.c b/lib/msun/src/w_coshf.c index 61e74f8c7c99..385bcfa931ee 100644 --- a/lib/msun/src/w_coshf.c +++ b/lib/msun/src/w_coshf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_exp.c b/lib/msun/src/w_exp.c index 7d1e74b5a711..4496acba1057 100644 --- a/lib/msun/src/w_exp.c +++ b/lib/msun/src/w_exp.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_expf.c b/lib/msun/src/w_expf.c index 07bd13b73ffb..a775ac6a3029 100644 --- a/lib/msun/src/w_expf.c +++ b/lib/msun/src/w_expf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_fmod.c b/lib/msun/src/w_fmod.c index 4ee45a16745e..b4200632a433 100644 --- a/lib/msun/src/w_fmod.c +++ b/lib/msun/src/w_fmod.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_fmodf.c b/lib/msun/src/w_fmodf.c index b948ee17ae5d..3cf05ed1df48 100644 --- a/lib/msun/src/w_fmodf.c +++ b/lib/msun/src/w_fmodf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_gamma.c b/lib/msun/src/w_gamma.c index fb3d12709d89..fd44c1cd822c 100644 --- a/lib/msun/src/w_gamma.c +++ b/lib/msun/src/w_gamma.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* double gamma(double x) diff --git a/lib/msun/src/w_gamma_r.c b/lib/msun/src/w_gamma_r.c index 2f10023b3191..fa59f8d8a49f 100644 --- a/lib/msun/src/w_gamma_r.c +++ b/lib/msun/src/w_gamma_r.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_gammaf.c b/lib/msun/src/w_gammaf.c index 0e579c78c73f..e956f516d38a 100644 --- a/lib/msun/src/w_gammaf.c +++ b/lib/msun/src/w_gammaf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/w_gammaf_r.c b/lib/msun/src/w_gammaf_r.c index aa71d6987d18..b8c1e12b9dd6 100644 --- a/lib/msun/src/w_gammaf_r.c +++ b/lib/msun/src/w_gammaf_r.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_hypot.c b/lib/msun/src/w_hypot.c index 6486c8ded645..a434a1df7c3c 100644 --- a/lib/msun/src/w_hypot.c +++ b/lib/msun/src/w_hypot.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_hypotf.c b/lib/msun/src/w_hypotf.c index 77c055d020eb..7987740ae820 100644 --- a/lib/msun/src/w_hypotf.c +++ b/lib/msun/src/w_hypotf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_j0.c b/lib/msun/src/w_j0.c index e1a4f85c7eee..1b2260b24ced 100644 --- a/lib/msun/src/w_j0.c +++ b/lib/msun/src/w_j0.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_j0f.c b/lib/msun/src/w_j0f.c index 2c6df51806b9..f332e2dc7c23 100644 --- a/lib/msun/src/w_j0f.c +++ b/lib/msun/src/w_j0f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_j1.c b/lib/msun/src/w_j1.c index 86f1a3f71d9e..068ac94217c7 100644 --- a/lib/msun/src/w_j1.c +++ b/lib/msun/src/w_j1.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_j1f.c b/lib/msun/src/w_j1f.c index 8ef1478dc21d..87995e3792ce 100644 --- a/lib/msun/src/w_j1f.c +++ b/lib/msun/src/w_j1f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_jn.c b/lib/msun/src/w_jn.c index 0b087e512b48..a575700ca0e9 100644 --- a/lib/msun/src/w_jn.c +++ b/lib/msun/src/w_jn.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_jnf.c b/lib/msun/src/w_jnf.c index 9ce1bede7c82..3d1a3d52f601 100644 --- a/lib/msun/src/w_jnf.c +++ b/lib/msun/src/w_jnf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/w_lgamma.c b/lib/msun/src/w_lgamma.c index 3ee3999b839b..88ab418baf0a 100644 --- a/lib/msun/src/w_lgamma.c +++ b/lib/msun/src/w_lgamma.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* double lgamma(double x) diff --git a/lib/msun/src/w_lgamma_r.c b/lib/msun/src/w_lgamma_r.c index 80fd27e0eecc..74cdfba97048 100644 --- a/lib/msun/src/w_lgamma_r.c +++ b/lib/msun/src/w_lgamma_r.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_lgammaf.c b/lib/msun/src/w_lgammaf.c index 7a237ca0c373..b8f66e605311 100644 --- a/lib/msun/src/w_lgammaf.c +++ b/lib/msun/src/w_lgammaf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/msun/src/w_lgammaf_r.c b/lib/msun/src/w_lgammaf_r.c index 2646669a1a59..f955dfbec29a 100644 --- a/lib/msun/src/w_lgammaf_r.c +++ b/lib/msun/src/w_lgammaf_r.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_log.c b/lib/msun/src/w_log.c index 7150aaa70c11..9440eb6128a4 100644 --- a/lib/msun/src/w_log.c +++ b/lib/msun/src/w_log.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_log10.c b/lib/msun/src/w_log10.c index e6cdca11da02..c6910b3226ea 100644 --- a/lib/msun/src/w_log10.c +++ b/lib/msun/src/w_log10.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_log10f.c b/lib/msun/src/w_log10f.c index b5f1247663d4..96057e178381 100644 --- a/lib/msun/src/w_log10f.c +++ b/lib/msun/src/w_log10f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_logf.c b/lib/msun/src/w_logf.c index dee641b01675..5e66a7d6422d 100644 --- a/lib/msun/src/w_logf.c +++ b/lib/msun/src/w_logf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_powf.c b/lib/msun/src/w_powf.c index 24a2cf442163..d6e48d895cd7 100644 --- a/lib/msun/src/w_powf.c +++ b/lib/msun/src/w_powf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_remainder.c b/lib/msun/src/w_remainder.c index 7d40df436220..26b0a2eaa6a4 100644 --- a/lib/msun/src/w_remainder.c +++ b/lib/msun/src/w_remainder.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_remainderf.c b/lib/msun/src/w_remainderf.c index 9cc28d4c1905..496bb1ffea5e 100644 --- a/lib/msun/src/w_remainderf.c +++ b/lib/msun/src/w_remainderf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_scalb.c b/lib/msun/src/w_scalb.c index c12b5e82f256..5fe8033b4fc8 100644 --- a/lib/msun/src/w_scalb.c +++ b/lib/msun/src/w_scalb.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_scalbf.c b/lib/msun/src/w_scalbf.c index 357850303d86..64a69940b936 100644 --- a/lib/msun/src/w_scalbf.c +++ b/lib/msun/src/w_scalbf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_sinh.c b/lib/msun/src/w_sinh.c index 7ed5ec786651..e222a0244148 100644 --- a/lib/msun/src/w_sinh.c +++ b/lib/msun/src/w_sinh.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_sinhf.c b/lib/msun/src/w_sinhf.c index 345440d6442e..4bcd9ae67a68 100644 --- a/lib/msun/src/w_sinhf.c +++ b/lib/msun/src/w_sinhf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_sqrt.c b/lib/msun/src/w_sqrt.c index f9b08a41bf05..b4cf0a63a898 100644 --- a/lib/msun/src/w_sqrt.c +++ b/lib/msun/src/w_sqrt.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_sqrtf.c b/lib/msun/src/w_sqrtf.c index 1b50a1833ceb..d24fc8cc7c0f 100644 --- a/lib/msun/src/w_sqrtf.c +++ b/lib/msun/src/w_sqrtf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_y0.c b/lib/msun/src/w_y0.c index d2da8ce9b4f4..91b9760a1d8b 100644 --- a/lib/msun/src/w_y0.c +++ b/lib/msun/src/w_y0.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_y0f.c b/lib/msun/src/w_y0f.c index a716441ab9bd..52ed04113bb0 100644 --- a/lib/msun/src/w_y0f.c +++ b/lib/msun/src/w_y0f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_y1.c b/lib/msun/src/w_y1.c index cde47aacaacf..b46d81e9282c 100644 --- a/lib/msun/src/w_y1.c +++ b/lib/msun/src/w_y1.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_y1f.c b/lib/msun/src/w_y1f.c index 0b8f33225c13..b4e4633d68ac 100644 --- a/lib/msun/src/w_y1f.c +++ b/lib/msun/src/w_y1f.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_yn.c b/lib/msun/src/w_yn.c index 2323d26ffb56..af0337657bdd 100644 --- a/lib/msun/src/w_yn.c +++ b/lib/msun/src/w_yn.c @@ -11,7 +11,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif /* diff --git a/lib/msun/src/w_ynf.c b/lib/msun/src/w_ynf.c index f7a24981c310..0597b92ce2de 100644 --- a/lib/msun/src/w_ynf.c +++ b/lib/msun/src/w_ynf.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$FreeBSD$"; +static char rcsid[] = "$Id$"; #endif #include "math.h" diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile index 9d0968195f9a..c0e7b35db132 100644 --- a/lib/ncurses/ncurses/Makefile +++ b/lib/ncurses/ncurses/Makefile @@ -1,5 +1,5 @@ # Makefile for ncurses -# $FreeBSD$ +# $Id$ LIB= ncurses SHLIB_MAJOR= 3 diff --git a/share/man/man3/pthread_getspecific.3 b/share/man/man3/pthread_getspecific.3 index 0b36b21211ee..b53841e0e76d 100644 --- a/share/man/man3/pthread_getspecific.3 +++ b/share/man/man3/pthread_getspecific.3 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $Id$ .\" .Dd April 4, 1996 .Dt PTHREAD_GETSPECIFIC 3