summaryrefslogtreecommitdiff
path: root/common/lib
diff options
context:
space:
mode:
authormatt <matt@NetBSD.org>2005-12-24 08:33:32 +0000
committermatt <matt@NetBSD.org>2005-12-24 08:33:32 +0000
commit460818ad029ce5f2efdb4feff19eb4e78f092f32 (patch)
tree2898a20c71b68662e5a87b31df0821383bf4bcac /common/lib
parent71119871616da30a8042bfeeb31b72f08cc1b9fb (diff)
Don't include "DEFS.h" when <machine/asm.h> is enough.
Diffstat (limited to 'common/lib')
-rw-r--r--common/lib/libc/arch/vax/gen/bswap64.S4
-rw-r--r--common/lib/libc/arch/vax/gen/udiv.S4
-rw-r--r--common/lib/libc/arch/vax/gen/urem.S4
-rw-r--r--common/lib/libc/arch/vax/string/memcpy.S4
-rw-r--r--common/lib/libc/arch/vax/string/memmove.S4
5 files changed, 10 insertions, 10 deletions
diff --git a/common/lib/libc/arch/vax/gen/bswap64.S b/common/lib/libc/arch/vax/gen/bswap64.S
index 5416d5865c6..b95bb74412d 100644
--- a/common/lib/libc/arch/vax/gen/bswap64.S
+++ b/common/lib/libc/arch/vax/gen/bswap64.S
@@ -1,10 +1,10 @@
/* Written by Anders Magnusson. Public Domain */
#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "$NetBSD: bswap64.S,v 1.1 2005/12/20 19:28:50 christos Exp $"
+ .asciz "$NetBSD: bswap64.S,v 1.2 2005/12/24 08:33:32 matt Exp $"
#endif /* LIBC_SCCS and not lint */
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(bswap64, 0)
movq 4(%ap),%r3
diff --git a/common/lib/libc/arch/vax/gen/udiv.S b/common/lib/libc/arch/vax/gen/udiv.S
index 27b1be79b9c..e9819c6ce47 100644
--- a/common/lib/libc/arch/vax/gen/udiv.S
+++ b/common/lib/libc/arch/vax/gen/udiv.S
@@ -32,7 +32,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/* .asciz "@(#)udiv.s 8.1 (Berkeley) 6/4/93" */
- .asciz "$NetBSD: udiv.S,v 1.1 2005/12/20 19:28:50 christos Exp $"
+ .asciz "$NetBSD: udiv.S,v 1.2 2005/12/24 08:33:32 matt Exp $"
#endif /* LIBC_SCCS and not lint */
/*
@@ -41,7 +41,7 @@
* audiv() takes a pointer to a dividend and an ordinary divisor.
*/
-#include "DEFS.h"
+#include <machine/asm.h>
#define DIVIDEND 4(%ap)
#define DIVISOR 8(%ap)
diff --git a/common/lib/libc/arch/vax/gen/urem.S b/common/lib/libc/arch/vax/gen/urem.S
index 326729a46c7..ffae00cf15f 100644
--- a/common/lib/libc/arch/vax/gen/urem.S
+++ b/common/lib/libc/arch/vax/gen/urem.S
@@ -32,10 +32,10 @@
#if defined(LIBC_SCCS) && !defined(lint)
/* .asciz "@(#)urem.s 8.1 (Berkeley) 6/4/93" */
- .asciz "$NetBSD: urem.S,v 1.1 2005/12/20 19:28:50 christos Exp $"
+ .asciz "$NetBSD: urem.S,v 1.2 2005/12/24 08:33:32 matt Exp $"
#endif /* LIBC_SCCS and not lint */
-#include "DEFS.h"
+#include <machine/asm.h>
/*
* Unsigned modulus, PCC flavor.
diff --git a/common/lib/libc/arch/vax/string/memcpy.S b/common/lib/libc/arch/vax/string/memcpy.S
index be5654a8cb6..843451c0df2 100644
--- a/common/lib/libc/arch/vax/string/memcpy.S
+++ b/common/lib/libc/arch/vax/string/memcpy.S
@@ -1,4 +1,4 @@
-/* $NetBSD: memcpy.S,v 1.1 2005/12/20 19:28:50 christos Exp $ */
+/* $NetBSD: memcpy.S,v 1.2 2005/12/24 08:33:32 matt Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -40,7 +40,7 @@
* of some extra memory references and branches when count >= 65536.
*/
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(memcpy, 0)
movzwl $65535,%r0 /* %r0 = 64K (needed below) */
diff --git a/common/lib/libc/arch/vax/string/memmove.S b/common/lib/libc/arch/vax/string/memmove.S
index 2756b90a48a..9e6516ae2bc 100644
--- a/common/lib/libc/arch/vax/string/memmove.S
+++ b/common/lib/libc/arch/vax/string/memmove.S
@@ -1,4 +1,4 @@
-/* $NetBSD: memmove.S,v 1.1 2005/12/20 19:28:50 christos Exp $ */
+/* $NetBSD: memmove.S,v 1.2 2005/12/24 08:33:32 matt Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -40,7 +40,7 @@
* of some extra memory references and branches when count >= 65536.
*/
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(memmove, 0)
movzwl $65535,%r0 /* %r0 = 64K (needed below) */