summaryrefslogtreecommitdiffstats
path: root/lib/libc/alpha/sys
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/alpha/sys
parent9ae17ce1370af41bcf1c5db5630f056ec6e3345e (diff)
downloadFreeBSD-src-6f344674a0af04f9a80844d7e0495643cfd96161.zip
FreeBSD-src-6f344674a0af04f9a80844d7e0495643cfd96161.tar.gz
Use __FBSDID.
Diffstat (limited to 'lib/libc/alpha/sys')
-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
10 files changed, 31 insertions, 12 deletions
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