summaryrefslogtreecommitdiff
path: root/lib/libc/alpha/sys
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-01-19 00:17:03 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-01-19 00:17:03 +0000
commitbd2d1003c124b564585773a08e1d0836d3348dd6 (patch)
tree5ad6381005ef348f73f0a44a1b0bced5f5836a88 /lib/libc/alpha/sys
parentcdede1b4245f3eacdf4fad534f442cbd0f76a03d (diff)
Notes
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 808a5a7a03d1..ca2bbefc3ea8 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 7dc3a40af8d7..9f3385b7bc27 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 e5b18f727e65..5744129807bf 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 345efb2b8abf..8ad065f69514 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 295e588d5e13..aa4240a45d4e 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 188bfd4154c9..b7ade3bfbe4a 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 931b43f00362..8e4c371f7f0c 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 5f4e15a22217..4d7990650229 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 e542b2d7bb37..bfc36b6d4067 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 0931f507bf67..9b13d5f1a136 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"
/*