summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-03-03 01:09:46 +0000
committerobrien <obrien@FreeBSD.org>2003-03-03 01:09:46 +0000
commit49328f91e2c3ec89deb8db1e0e0fa563967bdd43 (patch)
tree70e87c26ae2985ce1d9b6cd898e11883adf42a65 /lib
parent4007bcfd7b22842aa8a9859449e32be7ca59db85 (diff)
downloadFreeBSD-src-49328f91e2c3ec89deb8db1e0e0fa563967bdd43.zip
FreeBSD-src-49328f91e2c3ec89deb8db1e0e0fa563967bdd43.tar.gz
Use __FBSDID.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/ia64/gen/__divdf3.S3
-rw-r--r--lib/libc/ia64/gen/__divdi3.S4
-rw-r--r--lib/libc/ia64/gen/__divsf3.S3
-rw-r--r--lib/libc/ia64/gen/__divsi3.S4
-rw-r--r--lib/libc/ia64/gen/__moddi3.S4
-rw-r--r--lib/libc/ia64/gen/__modsi3.S4
-rw-r--r--lib/libc/ia64/gen/__udivdi3.S4
-rw-r--r--lib/libc/ia64/gen/__udivsi3.S4
-rw-r--r--lib/libc/ia64/gen/__umoddi3.S4
-rw-r--r--lib/libc/ia64/gen/__umodsi3.S4
-rw-r--r--lib/libc/ia64/gen/_setjmp.S5
-rw-r--r--lib/libc/ia64/gen/fabs.S3
-rw-r--r--lib/libc/ia64/gen/setjmp.S5
-rw-r--r--lib/libc/ia64/gen/sigsetjmp.S5
-rw-r--r--lib/libc/ia64/net/byte_swap_2.S2
-rw-r--r--lib/libc/ia64/net/byte_swap_4.S2
-rw-r--r--lib/libc/ia64/net/htonl.S4
-rw-r--r--lib/libc/ia64/net/htons.S4
-rw-r--r--lib/libc/ia64/net/ntohl.S4
-rw-r--r--lib/libc/ia64/net/ntohs.S4
-rw-r--r--lib/libc/ia64/string/bcopy.S1
-rw-r--r--lib/libc/ia64/string/bzero.S1
-rw-r--r--lib/libc/ia64/string/ffs.S2
-rw-r--r--lib/libc/ia64/string/memcpy.S3
-rw-r--r--lib/libc/ia64/string/memmove.S3
-rw-r--r--lib/libc/ia64/sys/Ovfork.S6
-rw-r--r--lib/libc/ia64/sys/brk.S4
-rw-r--r--lib/libc/ia64/sys/cerror.S3
-rw-r--r--lib/libc/ia64/sys/exect.S4
-rw-r--r--lib/libc/ia64/sys/fork.S6
-rw-r--r--lib/libc/ia64/sys/pipe.S4
-rw-r--r--lib/libc/ia64/sys/ptrace.S4
-rw-r--r--lib/libc/ia64/sys/sbrk.S4
-rw-r--r--lib/libc/ia64/sys/setlogin.S4
-rw-r--r--lib/libc/ia64/sys/sigreturn.S4
35 files changed, 85 insertions, 44 deletions
diff --git a/lib/libc/ia64/gen/__divdf3.S b/lib/libc/ia64/gen/__divdf3.S
index f27d3e0..58425d9 100644
--- a/lib/libc/ia64/gen/__divdf3.S
+++ b/lib/libc/ia64/gen/__divdf3.S
@@ -1,5 +1,3 @@
-// $FreeBSD$
-
//
// Copyright (c) 2000, Intel Corporation
// All rights reserved.
@@ -28,6 +26,7 @@
//
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
.section .text
diff --git a/lib/libc/ia64/gen/__divdi3.S b/lib/libc/ia64/gen/__divdi3.S
index 7b06bf46..92e2911 100644
--- a/lib/libc/ia64/gen/__divdi3.S
+++ b/lib/libc/ia64/gen/__divdi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__divdi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
.proc __divdi3#
.align 32
diff --git a/lib/libc/ia64/gen/__divsf3.S b/lib/libc/ia64/gen/__divsf3.S
index e962415..fe7bcb4 100644
--- a/lib/libc/ia64/gen/__divsf3.S
+++ b/lib/libc/ia64/gen/__divsf3.S
@@ -1,5 +1,3 @@
-// $FreeBSD$
-
//
// Copyright (c) 2000, Intel Corporation
// All rights reserved.
@@ -28,6 +26,7 @@
//
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
ENTRY(__divsf3, 0)
{ .mfi
diff --git a/lib/libc/ia64/gen/__divsi3.S b/lib/libc/ia64/gen/__divsi3.S
index 7c088e9..4c82e32 100644
--- a/lib/libc/ia64/gen/__divsi3.S
+++ b/lib/libc/ia64/gen/__divsi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__divsi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 32-bit signed integer divide
diff --git a/lib/libc/ia64/gen/__moddi3.S b/lib/libc/ia64/gen/__moddi3.S
index 897066c..e15f964 100644
--- a/lib/libc/ia64/gen/__moddi3.S
+++ b/lib/libc/ia64/gen/__moddi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__moddi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 64-bit signed integer remainder
diff --git a/lib/libc/ia64/gen/__modsi3.S b/lib/libc/ia64/gen/__modsi3.S
index f91cf75..1939493 100644
--- a/lib/libc/ia64/gen/__modsi3.S
+++ b/lib/libc/ia64/gen/__modsi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__modsi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 32-bit signed integer remainder
diff --git a/lib/libc/ia64/gen/__udivdi3.S b/lib/libc/ia64/gen/__udivdi3.S
index 6a9fad4c..1233e8a 100644
--- a/lib/libc/ia64/gen/__udivdi3.S
+++ b/lib/libc/ia64/gen/__udivdi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__udivdi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
.proc __udivdi3#
.align 32
diff --git a/lib/libc/ia64/gen/__udivsi3.S b/lib/libc/ia64/gen/__udivsi3.S
index 0ac0369..25959b8 100644
--- a/lib/libc/ia64/gen/__udivsi3.S
+++ b/lib/libc/ia64/gen/__udivsi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__udivsi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 32-bit unsigned integer divide
diff --git a/lib/libc/ia64/gen/__umoddi3.S b/lib/libc/ia64/gen/__umoddi3.S
index 05a0304..509c62b 100644
--- a/lib/libc/ia64/gen/__umoddi3.S
+++ b/lib/libc/ia64/gen/__umoddi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__umoddi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 64-bit unsigned integer remainder
diff --git a/lib/libc/ia64/gen/__umodsi3.S b/lib/libc/ia64/gen/__umodsi3.S
index 5076e76..697db2e 100644
--- a/lib/libc/ia64/gen/__umodsi3.S
+++ b/lib/libc/ia64/gen/__umodsi3.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
.file "__umodsi3.s"
//
@@ -28,6 +27,9 @@
// http://developer.intel.com/opensource.
//
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
.section .text
// 32-bit unsigned integer remainder
diff --git a/lib/libc/ia64/gen/_setjmp.S b/lib/libc/ia64/gen/_setjmp.S
index 5f15cd4..a48e5f1 100644
--- a/lib/libc/ia64/gen/_setjmp.S
+++ b/lib/libc/ia64/gen/_setjmp.S
@@ -1,4 +1,3 @@
-// $FreeBSD$
//
// Copyright (c) 1999, 2000
// Intel Corporation.
@@ -51,8 +50,10 @@
.file "setjmp.s"
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define LOCORE
-#include <machine/asm.h>
#include <machine/setjmp.h>
// int _setjmp(struct jmp_buffer *)
diff --git a/lib/libc/ia64/gen/fabs.S b/lib/libc/ia64/gen/fabs.S
index 786606b..036d492 100644
--- a/lib/libc/ia64/gen/fabs.S
+++ b/lib/libc/ia64/gen/fabs.S
@@ -22,11 +22,10 @@
* 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$");
ENTRY(fabs, 1)
fabs fret0=farg0
diff --git a/lib/libc/ia64/gen/setjmp.S b/lib/libc/ia64/gen/setjmp.S
index 817e333..7b1eb67 100644
--- a/lib/libc/ia64/gen/setjmp.S
+++ b/lib/libc/ia64/gen/setjmp.S
@@ -1,5 +1,4 @@
/* $NetBSD: setjmp.S,v 1.3 1997/12/05 02:06:27 thorpej Exp $ */
-/* $FreeBSD$ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -28,8 +27,10 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define LOCORE
-#include <machine/asm.h>
#include <machine/setjmp.h>
/*
diff --git a/lib/libc/ia64/gen/sigsetjmp.S b/lib/libc/ia64/gen/sigsetjmp.S
index 37e6f95..9f02a26 100644
--- a/lib/libc/ia64/gen/sigsetjmp.S
+++ b/lib/libc/ia64/gen/sigsetjmp.S
@@ -1,5 +1,4 @@
/* $NetBSD: sigsetjmp.S,v 1.2 1996/10/17 03:08:07 cgd Exp $ */
-/* $FreeBSD$ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -28,8 +27,10 @@
* rights to redistribute these changes.
*/
-#define LOCORE
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
+#define LOCORE
#include <machine/setjmp.h>
/*
diff --git a/lib/libc/ia64/net/byte_swap_2.S b/lib/libc/ia64/net/byte_swap_2.S
index 19d0eef..34498b7 100644
--- a/lib/libc/ia64/net/byte_swap_2.S
+++ b/lib/libc/ia64/net/byte_swap_2.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: byte_swap_2.S,v 1.2 1996/10/17 03:08:08 cgd Exp $ */
/*
@@ -29,6 +28,7 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
#if !defined(ALIAS) || !defined(NAME)
#error ALIAS or NAME not defined
diff --git a/lib/libc/ia64/net/byte_swap_4.S b/lib/libc/ia64/net/byte_swap_4.S
index 71019ba..c5daa81 100644
--- a/lib/libc/ia64/net/byte_swap_4.S
+++ b/lib/libc/ia64/net/byte_swap_4.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: byte_swap_4.S,v 1.2 1996/10/17 03:08:09 cgd Exp $ */
/*
@@ -29,6 +28,7 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
#if !defined(ALIAS) || !defined(NAME)
#error ALIAS or NAME not defined
diff --git a/lib/libc/ia64/net/htonl.S b/lib/libc/ia64/net/htonl.S
index 7a71a29..05c906c 100644
--- a/lib/libc/ia64/net/htonl.S
+++ b/lib/libc/ia64/net/htonl.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: htonl.S,v 1.1 1996/04/17 22:36:52 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define ALIAS htonl
#define NAME __htonl
diff --git a/lib/libc/ia64/net/htons.S b/lib/libc/ia64/net/htons.S
index 689b367..4bd3a8b 100644
--- a/lib/libc/ia64/net/htons.S
+++ b/lib/libc/ia64/net/htons.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: htons.S,v 1.1 1996/04/17 22:36:54 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define ALIAS htons
#define NAME __htons
diff --git a/lib/libc/ia64/net/ntohl.S b/lib/libc/ia64/net/ntohl.S
index 9e2c612..a08a162 100644
--- a/lib/libc/ia64/net/ntohl.S
+++ b/lib/libc/ia64/net/ntohl.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: ntohl.S,v 1.1 1996/04/17 22:36:57 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define ALIAS ntohl
#define NAME __ntohl
diff --git a/lib/libc/ia64/net/ntohs.S b/lib/libc/ia64/net/ntohs.S
index 16a884b..79e6e0c 100644
--- a/lib/libc/ia64/net/ntohs.S
+++ b/lib/libc/ia64/net/ntohs.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: ntohs.S,v 1.1 1996/04/17 22:37:02 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define ALIAS ntohs
#define NAME __ntohs
diff --git a/lib/libc/ia64/string/bcopy.S b/lib/libc/ia64/string/bcopy.S
index 5a2f9fd..09f5bc0 100644
--- a/lib/libc/ia64/string/bcopy.S
+++ b/lib/libc/ia64/string/bcopy.S
@@ -27,6 +27,7 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* Not the fastest bcopy in the world.
diff --git a/lib/libc/ia64/string/bzero.S b/lib/libc/ia64/string/bzero.S
index 1d1519e1f..bd08a1a 100644
--- a/lib/libc/ia64/string/bzero.S
+++ b/lib/libc/ia64/string/bzero.S
@@ -27,6 +27,7 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
ENTRY(bzero, 2)
diff --git a/lib/libc/ia64/string/ffs.S b/lib/libc/ia64/string/ffs.S
index c4ffd1b..d99d765 100644
--- a/lib/libc/ia64/string/ffs.S
+++ b/lib/libc/ia64/string/ffs.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: ffs.S,v 1.3 1996/10/17 03:08:13 cgd Exp $ */
/*
@@ -33,6 +32,7 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
ENTRY(ffs, 1)
sxt4 r14=in0 ;;
diff --git a/lib/libc/ia64/string/memcpy.S b/lib/libc/ia64/string/memcpy.S
index 572e49a..d9937fb 100644
--- a/lib/libc/ia64/string/memcpy.S
+++ b/lib/libc/ia64/string/memcpy.S
@@ -22,11 +22,10 @@
* 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$");
ENTRY(memcpy,3)
diff --git a/lib/libc/ia64/string/memmove.S b/lib/libc/ia64/string/memmove.S
index 5586a60..06639d1 100644
--- a/lib/libc/ia64/string/memmove.S
+++ b/lib/libc/ia64/string/memmove.S
@@ -22,11 +22,10 @@
* 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$");
ENTRY(memmove,3)
diff --git a/lib/libc/ia64/sys/Ovfork.S b/lib/libc/ia64/sys/Ovfork.S
index 1e39ef7..bdd7ce3 100644
--- a/lib/libc/ia64/sys/Ovfork.S
+++ b/lib/libc/ia64/sys/Ovfork.S
@@ -22,9 +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"
SYSCALL(vfork)
diff --git a/lib/libc/ia64/sys/brk.S b/lib/libc/ia64/sys/brk.S
index a8d910c..d325886 100644
--- a/lib/libc/ia64/sys/brk.S
+++ b/lib/libc/ia64/sys/brk.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: brk.S,v 1.4 1996/10/17 03:08:15 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
.globl _end
diff --git a/lib/libc/ia64/sys/cerror.S b/lib/libc/ia64/sys/cerror.S
index da35bd7..ca0b0c7 100644
--- a/lib/libc/ia64/sys/cerror.S
+++ b/lib/libc/ia64/sys/cerror.S
@@ -22,11 +22,10 @@
* 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$");
ENTRY(.cerror, 0)
diff --git a/lib/libc/ia64/sys/exect.S b/lib/libc/ia64/sys/exect.S
index d1c68b4b..817d3b1 100644
--- a/lib/libc/ia64/sys/exect.S
+++ b/lib/libc/ia64/sys/exect.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: exect.S,v 1.2 1996/10/17 03:08:18 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
ENTRY(exect, 3)
diff --git a/lib/libc/ia64/sys/fork.S b/lib/libc/ia64/sys/fork.S
index 2657e0d..886bf9b 100644
--- a/lib/libc/ia64/sys/fork.S
+++ b/lib/libc/ia64/sys/fork.S
@@ -22,9 +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"
SYSCALL(fork)
diff --git a/lib/libc/ia64/sys/pipe.S b/lib/libc/ia64/sys/pipe.S
index 3254341..0b2600c 100644
--- a/lib/libc/ia64/sys/pipe.S
+++ b/lib/libc/ia64/sys/pipe.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: pipe.S,v 1.1 1995/02/10 17:50:35 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
SYSCALL(pipe)
diff --git a/lib/libc/ia64/sys/ptrace.S b/lib/libc/ia64/sys/ptrace.S
index 913a22d..b6d3abd 100644
--- a/lib/libc/ia64/sys/ptrace.S
+++ b/lib/libc/ia64/sys/ptrace.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: ptrace.S,v 1.4 1996/11/08 00:51:24 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
ENTRY(ptrace, 4)
diff --git a/lib/libc/ia64/sys/sbrk.S b/lib/libc/ia64/sys/sbrk.S
index f46f344..1dc4cf2 100644
--- a/lib/libc/ia64/sys/sbrk.S
+++ b/lib/libc/ia64/sys/sbrk.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: sbrk.S,v 1.4 1996/10/17 03:08:20 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
.globl _end
diff --git a/lib/libc/ia64/sys/setlogin.S b/lib/libc/ia64/sys/setlogin.S
index 2f80ddf..73a55b6 100644
--- a/lib/libc/ia64/sys/setlogin.S
+++ b/lib/libc/ia64/sys/setlogin.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: setlogin.S,v 1.1 1995/02/10 17:50:39 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
IMPORT(_logname_valid, 4) /* in getlogin() */
diff --git a/lib/libc/ia64/sys/sigreturn.S b/lib/libc/ia64/sys/sigreturn.S
index 57416b1..2c7a710 100644
--- a/lib/libc/ia64/sys/sigreturn.S
+++ b/lib/libc/ia64/sys/sigreturn.S
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $NetBSD: sigreturn.S,v 1.1 1995/02/10 17:50:42 cgd Exp $ */
/*
@@ -28,6 +27,9 @@
* rights to redistribute these changes.
*/
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#include "SYS.h"
/*
OpenPOWER on IntegriCloud