From 6f344674a0af04f9a80844d7e0495643cfd96161 Mon Sep 17 00:00:00 2001 From: obrien Date: Sun, 19 Jan 2003 00:17:03 +0000 Subject: Use __FBSDID. --- lib/libc/alpha/gen/_ctx_start.S | 6 +----- lib/libc/alpha/gen/_setjmp.S | 3 +-- lib/libc/alpha/gen/fabs.S | 2 +- lib/libc/alpha/gen/getcontext.S | 5 +---- lib/libc/alpha/gen/rfork_thread.S | 5 +++-- lib/libc/alpha/gen/setjmp.S | 5 +++-- lib/libc/alpha/gen/sigsetjmp.S | 3 +-- lib/libc/alpha/net/byte_swap_2.S | 3 +-- lib/libc/alpha/net/byte_swap_4.S | 3 +-- lib/libc/alpha/net/htonl.S | 5 +++-- lib/libc/alpha/net/htons.S | 5 +++-- lib/libc/alpha/net/ntohl.S | 5 +++-- lib/libc/alpha/net/ntohs.S | 5 +++-- lib/libc/alpha/string/bcopy.S | 1 + lib/libc/alpha/string/bzero.S | 1 + lib/libc/alpha/string/ffs.S | 1 + lib/libc/alpha/string/memcpy.S | 4 ++++ lib/libc/alpha/string/memmove.S | 3 +++ lib/libc/alpha/sys/Ovfork.S | 5 +++-- lib/libc/alpha/sys/brk.S | 3 +++ lib/libc/alpha/sys/cerror.S | 6 ++++-- lib/libc/alpha/sys/exect.S | 3 +++ lib/libc/alpha/sys/fork.S | 5 +++-- lib/libc/alpha/sys/pipe.S | 5 +++-- lib/libc/alpha/sys/ptrace.S | 3 +++ lib/libc/alpha/sys/sbrk.S | 3 +++ lib/libc/alpha/sys/setlogin.S | 5 +++-- lib/libc/alpha/sys/sigreturn.S | 5 +++-- 28 files changed, 66 insertions(+), 42 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/alpha/gen/_ctx_start.S b/lib/libc/alpha/gen/_ctx_start.S index f17d1d5..229a6c1 100644 --- a/lib/libc/alpha/gen/_ctx_start.S +++ b/lib/libc/alpha/gen/_ctx_start.S @@ -24,12 +24,8 @@ * SUCH DAMAGE. */ -/* - * $FreeBSD$ - */ - #include - +__FBSDID("$FreeBSD$"); /* * A0-A5 are the first 6 arguments to the start routine with the diff --git a/lib/libc/alpha/gen/_setjmp.S b/lib/libc/alpha/gen/_setjmp.S index 22cba2a..85ed8c7 100644 --- a/lib/libc/alpha/gen/_setjmp.S +++ b/lib/libc/alpha/gen/_setjmp.S @@ -25,11 +25,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ #include +__FBSDID("$FreeBSD$"); /* * C library -- _setjmp, _longjmp diff --git a/lib/libc/alpha/gen/fabs.S b/lib/libc/alpha/gen/fabs.S index 4305cce..5a742fe 100644 --- a/lib/libc/alpha/gen/fabs.S +++ b/lib/libc/alpha/gen/fabs.S @@ -1,5 +1,4 @@ /* $NetBSD: fabs.S,v 1.2 1996/10/17 03:08:05 cgd Exp $ */ -/* $FreeBSD$ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. @@ -29,6 +28,7 @@ */ #include +__FBSDID("$FreeBSD$"); LEAF(fabs, 1) cpys fzero, fa0, fv0 diff --git a/lib/libc/alpha/gen/getcontext.S b/lib/libc/alpha/gen/getcontext.S index 92a15fd..8149133 100644 --- a/lib/libc/alpha/gen/getcontext.S +++ b/lib/libc/alpha/gen/getcontext.S @@ -51,11 +51,8 @@ * */ -/* - * $FreeBSD$ - */ - #include +__FBSDID("$FreeBSD$"); /* #include */ #define FRAME_V0 0 diff --git a/lib/libc/alpha/gen/rfork_thread.S b/lib/libc/alpha/gen/rfork_thread.S index ff0ed2c..68b0233 100644 --- a/lib/libc/alpha/gen/rfork_thread.S +++ b/lib/libc/alpha/gen/rfork_thread.S @@ -22,10 +22,11 @@ * 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$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" #include /* #include */ diff --git a/lib/libc/alpha/gen/setjmp.S b/lib/libc/alpha/gen/setjmp.S index 20e1135..5e154f5 100644 --- a/lib/libc/alpha/gen/setjmp.S +++ b/lib/libc/alpha/gen/setjmp.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" /* diff --git a/lib/libc/alpha/gen/sigsetjmp.S b/lib/libc/alpha/gen/sigsetjmp.S index ddc0636..0f7e400 100644 --- a/lib/libc/alpha/gen/sigsetjmp.S +++ b/lib/libc/alpha/gen/sigsetjmp.S @@ -25,11 +25,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ #include +__FBSDID("$FreeBSD$"); /* * C library -- sigsetjmp, siglongjmp diff --git a/lib/libc/alpha/net/byte_swap_2.S b/lib/libc/alpha/net/byte_swap_2.S index ebcbeda..d7933c4 100644 --- a/lib/libc/alpha/net/byte_swap_2.S +++ b/lib/libc/alpha/net/byte_swap_2.S @@ -25,11 +25,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ #include +__FBSDID("$FreeBSD$"); #if !defined(ALIAS) || !defined(NAME) #error ALIAS or NAME not defined diff --git a/lib/libc/alpha/net/byte_swap_4.S b/lib/libc/alpha/net/byte_swap_4.S index ddfd1e9..04acc85 100644 --- a/lib/libc/alpha/net/byte_swap_4.S +++ b/lib/libc/alpha/net/byte_swap_4.S @@ -25,11 +25,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ #include +__FBSDID("$FreeBSD$"); #if !defined(ALIAS) || !defined(NAME) #error ALIAS or NAME not defined diff --git a/lib/libc/alpha/net/htonl.S b/lib/libc/alpha/net/htonl.S index 90d9441..05c906c 100644 --- a/lib/libc/alpha/net/htonl.S +++ b/lib/libc/alpha/net/htonl.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #define ALIAS htonl #define NAME __htonl diff --git a/lib/libc/alpha/net/htons.S b/lib/libc/alpha/net/htons.S index 405d537..4bd3a8b 100644 --- a/lib/libc/alpha/net/htons.S +++ b/lib/libc/alpha/net/htons.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #define ALIAS htons #define NAME __htons diff --git a/lib/libc/alpha/net/ntohl.S b/lib/libc/alpha/net/ntohl.S index 54ea68d..a08a162 100644 --- a/lib/libc/alpha/net/ntohl.S +++ b/lib/libc/alpha/net/ntohl.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #define ALIAS ntohl #define NAME __ntohl diff --git a/lib/libc/alpha/net/ntohs.S b/lib/libc/alpha/net/ntohs.S index f841a7a8..79e6e0c 100644 --- a/lib/libc/alpha/net/ntohs.S +++ b/lib/libc/alpha/net/ntohs.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #define ALIAS ntohs #define NAME __ntohs diff --git a/lib/libc/alpha/string/bcopy.S b/lib/libc/alpha/string/bcopy.S index 6a45ad6..dc23063 100644 --- a/lib/libc/alpha/string/bcopy.S +++ b/lib/libc/alpha/string/bcopy.S @@ -29,6 +29,7 @@ */ #include +__FBSDID("$FreeBSD$"); #if defined(MEMCOPY) || defined(MEMMOVE) #ifdef MEMCOPY diff --git a/lib/libc/alpha/string/bzero.S b/lib/libc/alpha/string/bzero.S index 9897344..dd94200 100644 --- a/lib/libc/alpha/string/bzero.S +++ b/lib/libc/alpha/string/bzero.S @@ -28,6 +28,7 @@ */ #include +__FBSDID("$FreeBSD$"); LEAF(bzero,2) ble a1,bzero_done diff --git a/lib/libc/alpha/string/ffs.S b/lib/libc/alpha/string/ffs.S index 4c30a16..11147d6 100644 --- a/lib/libc/alpha/string/ffs.S +++ b/lib/libc/alpha/string/ffs.S @@ -32,6 +32,7 @@ */ #include +__FBSDID("$FreeBSD$"); LEAF(ffs, 1) addl a0, 0, t0 diff --git a/lib/libc/alpha/string/memcpy.S b/lib/libc/alpha/string/memcpy.S index 7f5527d..ef50ab1 100644 --- a/lib/libc/alpha/string/memcpy.S +++ b/lib/libc/alpha/string/memcpy.S @@ -1,4 +1,8 @@ /* $NetBSD: memcpy.S,v 1.1 1995/08/13 00:40:47 cgd Exp $ */ + +#include +__FBSDID("$FreeBSD$"); + #define MEMCOPY #include "bcopy.S" diff --git a/lib/libc/alpha/string/memmove.S b/lib/libc/alpha/string/memmove.S index 4e632d2..ad80b1c 100644 --- a/lib/libc/alpha/string/memmove.S +++ b/lib/libc/alpha/string/memmove.S @@ -1,4 +1,7 @@ /* $NetBSD: memmove.S,v 1.1 1995/08/13 00:40:48 cgd Exp $ */ +#include +__FBSDID("$FreeBSD$"); + #define MEMMOVE #include "bcopy.S" diff --git a/lib/libc/alpha/sys/Ovfork.S b/lib/libc/alpha/sys/Ovfork.S index 808a5a7..ca2bbef 100644 --- a/lib/libc/alpha/sys/Ovfork.S +++ b/lib/libc/alpha/sys/Ovfork.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" SYSCALL(vfork) diff --git a/lib/libc/alpha/sys/brk.S b/lib/libc/alpha/sys/brk.S index 7dc3a40..9f3385b 100644 --- a/lib/libc/alpha/sys/brk.S +++ b/lib/libc/alpha/sys/brk.S @@ -27,6 +27,9 @@ * rights to redistribute these changes. */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" .globl _end diff --git a/lib/libc/alpha/sys/cerror.S b/lib/libc/alpha/sys/cerror.S index e5b18f7..5744129 100644 --- a/lib/libc/alpha/sys/cerror.S +++ b/lib/libc/alpha/sys/cerror.S @@ -1,5 +1,4 @@ -/* $FreeBSD$ */ -/* From: NetBSD: cerror.S,v 1.4 1996/11/08 00:52:46 cgd Exp */ +/* $NetBSD: cerror.S,v 1.4 1996/11/08 00:52:46 cgd Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. @@ -28,6 +27,9 @@ * rights to redistribute these changes. */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" #define FRAME_SIZE 16 diff --git a/lib/libc/alpha/sys/exect.S b/lib/libc/alpha/sys/exect.S index 345efb2..8ad065f 100644 --- a/lib/libc/alpha/sys/exect.S +++ b/lib/libc/alpha/sys/exect.S @@ -27,6 +27,9 @@ * rights to redistribute these changes. */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" LEAF(exect, 3) diff --git a/lib/libc/alpha/sys/fork.S b/lib/libc/alpha/sys/fork.S index 295e588..aa4240a 100644 --- a/lib/libc/alpha/sys/fork.S +++ b/lib/libc/alpha/sys/fork.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" SYSCALL(fork) diff --git a/lib/libc/alpha/sys/pipe.S b/lib/libc/alpha/sys/pipe.S index 188bfd4..b7ade3b 100644 --- a/lib/libc/alpha/sys/pipe.S +++ b/lib/libc/alpha/sys/pipe.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" SYSCALL(pipe) diff --git a/lib/libc/alpha/sys/ptrace.S b/lib/libc/alpha/sys/ptrace.S index 931b43f..8e4c371 100644 --- a/lib/libc/alpha/sys/ptrace.S +++ b/lib/libc/alpha/sys/ptrace.S @@ -27,6 +27,9 @@ * rights to redistribute these changes. */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" LEAF(ptrace, 4) diff --git a/lib/libc/alpha/sys/sbrk.S b/lib/libc/alpha/sys/sbrk.S index 5f4e15a..4d79906 100644 --- a/lib/libc/alpha/sys/sbrk.S +++ b/lib/libc/alpha/sys/sbrk.S @@ -27,6 +27,9 @@ * rights to redistribute these changes. */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" .globl _end diff --git a/lib/libc/alpha/sys/setlogin.S b/lib/libc/alpha/sys/setlogin.S index e542b2d..bfc36b6 100644 --- a/lib/libc/alpha/sys/setlogin.S +++ b/lib/libc/alpha/sys/setlogin.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" IMPORT(_logname_valid, 4) /* in _getlogin() */ diff --git a/lib/libc/alpha/sys/sigreturn.S b/lib/libc/alpha/sys/sigreturn.S index 0931f50..9b13d5f 100644 --- a/lib/libc/alpha/sys/sigreturn.S +++ b/lib/libc/alpha/sys/sigreturn.S @@ -25,10 +25,11 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "SYS.h" /* -- cgit v1.1