diff options
Diffstat (limited to 'lib/libc/amd64')
-rw-r--r-- | lib/libc/amd64/SYS.h | 2 | ||||
-rw-r--r-- | lib/libc/amd64/gen/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/amd64/gen/_setjmp.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/gen/frexp.c | 4 | ||||
-rw-r--r-- | lib/libc/amd64/gen/infinity.c | 2 | ||||
-rw-r--r-- | lib/libc/amd64/gen/isinf.c | 4 | ||||
-rw-r--r-- | lib/libc/amd64/gen/ldexp.c | 4 | ||||
-rw-r--r-- | lib/libc/amd64/gen/setjmp.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/gen/sigsetjmp.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/net/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/amd64/net/htonl.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/net/htons.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/net/ntohl.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/net/ntohs.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/amd64/sys/brk.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/cerror.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/exect.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/pipe.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/ptrace.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/reboot.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/sbrk.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/setlogin.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/sigreturn.S | 4 | ||||
-rw-r--r-- | lib/libc/amd64/sys/vfork.S | 4 |
25 files changed, 45 insertions, 45 deletions
diff --git a/lib/libc/amd64/SYS.h b/lib/libc/amd64/SYS.h index a1bcab0..2f51e63 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 <sys/syscall.h> diff --git a/lib/libc/amd64/gen/Makefile.inc b/lib/libc/amd64/gen/Makefile.inc index d57a794..457d5c3 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 96ea79c..62259ce 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 1de32db..aba4802 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 <sys/types.h> diff --git a/lib/libc/amd64/gen/infinity.c b/lib/libc/amd64/gen/infinity.c index 3ba7306..e46f676 100644 --- a/lib/libc/amd64/gen/infinity.c +++ b/lib/libc/amd64/gen/infinity.c @@ -1,6 +1,6 @@ /* * infinity.c - * $FreeBSD$ + * $Id$ */ #include <math.h> diff --git a/lib/libc/amd64/gen/isinf.c b/lib/libc/amd64/gen/isinf.c index b3f8f92..a796dcf 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 <sys/types.h> diff --git a/lib/libc/amd64/gen/ldexp.c b/lib/libc/amd64/gen/ldexp.c index ad3242c..8b63f52 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 04728ca..6525a16 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 6ad2353..1220598 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 0d532ff..dff7fd1 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 a0a7670..095c40a 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 66084a8..238dfc2 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 1f01ad9..5af5008 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 184a1e6..4bed4a2 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 8aaa3c4..6774dd3 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 b306bc5..4fdf0c6 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 bfa842e..2d8f935 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 7a05291..af0d2ee 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 1cc923b..637b86f 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 07d2c87..018a02c 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 93fa431..70049b2 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 6bf587b..a3afd89 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 8e04747..7bcf3bd 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 e276594..65deb40 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 de00199..e4ed257 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" |