summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-01-19 00:17:03 +0000
committerobrien <obrien@FreeBSD.org>2003-01-19 00:17:03 +0000
commit6f344674a0af04f9a80844d7e0495643cfd96161 (patch)
tree5ad6381005ef348f73f0a44a1b0bced5f5836a88 /lib/libc
parent9ae17ce1370af41bcf1c5db5630f056ec6e3345e (diff)
downloadFreeBSD-src-6f344674a0af04f9a80844d7e0495643cfd96161.zip
FreeBSD-src-6f344674a0af04f9a80844d7e0495643cfd96161.tar.gz
Use __FBSDID.
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/alpha/gen/_ctx_start.S6
-rw-r--r--lib/libc/alpha/gen/_setjmp.S3
-rw-r--r--lib/libc/alpha/gen/fabs.S2
-rw-r--r--lib/libc/alpha/gen/getcontext.S5
-rw-r--r--lib/libc/alpha/gen/rfork_thread.S5
-rw-r--r--lib/libc/alpha/gen/setjmp.S5
-rw-r--r--lib/libc/alpha/gen/sigsetjmp.S3
-rw-r--r--lib/libc/alpha/net/byte_swap_2.S3
-rw-r--r--lib/libc/alpha/net/byte_swap_4.S3
-rw-r--r--lib/libc/alpha/net/htonl.S5
-rw-r--r--lib/libc/alpha/net/htons.S5
-rw-r--r--lib/libc/alpha/net/ntohl.S5
-rw-r--r--lib/libc/alpha/net/ntohs.S5
-rw-r--r--lib/libc/alpha/string/bcopy.S1
-rw-r--r--lib/libc/alpha/string/bzero.S1
-rw-r--r--lib/libc/alpha/string/ffs.S1
-rw-r--r--lib/libc/alpha/string/memcpy.S4
-rw-r--r--lib/libc/alpha/string/memmove.S3
-rw-r--r--lib/libc/alpha/sys/Ovfork.S5
-rw-r--r--lib/libc/alpha/sys/brk.S3
-rw-r--r--lib/libc/alpha/sys/cerror.S6
-rw-r--r--lib/libc/alpha/sys/exect.S3
-rw-r--r--lib/libc/alpha/sys/fork.S5
-rw-r--r--lib/libc/alpha/sys/pipe.S5
-rw-r--r--lib/libc/alpha/sys/ptrace.S3
-rw-r--r--lib/libc/alpha/sys/sbrk.S3
-rw-r--r--lib/libc/alpha/sys/setlogin.S5
-rw-r--r--lib/libc/alpha/sys/sigreturn.S5
28 files changed, 66 insertions, 42 deletions
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 <machine/asm.h>
-
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__FBSDID("$FreeBSD$");
/* #include <machine/frame.h> */
#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 <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
#include <sys/syscall.h>
/* #include <machine/pal.h> */
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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__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 <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
/*
OpenPOWER on IntegriCloud