aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/amd64
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-10-24 20:29:14 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-10-24 20:29:14 +0000
commite6d808aee319c457c0f73f906b8a2b1d888f793b (patch)
treebf9bde0f6829f75c2e9747018b1dd82fae1b367f /lib/libc/amd64
parent88f5f7ac50800afe889f9fd4ea629116d610ecea (diff)
Notes
Diffstat (limited to 'lib/libc/amd64')
-rw-r--r--lib/libc/amd64/SYS.h2
-rw-r--r--lib/libc/amd64/gen/_setjmp.S2
-rw-r--r--lib/libc/amd64/gen/setjmp.S1
-rw-r--r--lib/libc/amd64/gen/sigsetjmp.S1
-rw-r--r--lib/libc/amd64/net/htonl.S2
-rw-r--r--lib/libc/amd64/net/htons.S2
-rw-r--r--lib/libc/amd64/net/ntohl.S2
-rw-r--r--lib/libc/amd64/net/ntohs.S2
-rw-r--r--lib/libc/amd64/sys/vfork.S1
9 files changed, 6 insertions, 9 deletions
diff --git a/lib/libc/amd64/SYS.h b/lib/libc/amd64/SYS.h
index ba56bcee7714..6ef313641296 100644
--- a/lib/libc/amd64/SYS.h
+++ b/lib/libc/amd64/SYS.h
@@ -39,7 +39,7 @@
*/
#include <sys/syscall.h>
-#include "DEFS.h"
+#include <machine/asm.h>
#define SYSCALL(x) 2: PIC_PROLOGUE; jmp PIC_PLT(HIDENAME(cerror)); \
ENTRY(__CONCAT(__sys_,x)); \
diff --git a/lib/libc/amd64/gen/_setjmp.S b/lib/libc/amd64/gen/_setjmp.S
index 2dde8d66afee..03a594c9c1fa 100644
--- a/lib/libc/amd64/gen/_setjmp.S
+++ b/lib/libc/amd64/gen/_setjmp.S
@@ -49,7 +49,7 @@
* The previous signal state is NOT restored.
*/
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(_setjmp)
movl 4(%esp),%eax
diff --git a/lib/libc/amd64/gen/setjmp.S b/lib/libc/amd64/gen/setjmp.S
index aec3d26356d0..ed8503629b2b 100644
--- a/lib/libc/amd64/gen/setjmp.S
+++ b/lib/libc/amd64/gen/setjmp.S
@@ -49,7 +49,6 @@
* The previous signal state is restored.
*/
-#include "DEFS.h"
#include "SYS.h"
ENTRY(setjmp)
diff --git a/lib/libc/amd64/gen/sigsetjmp.S b/lib/libc/amd64/gen/sigsetjmp.S
index 2c71cb0d215f..6fd13056d8a9 100644
--- a/lib/libc/amd64/gen/sigsetjmp.S
+++ b/lib/libc/amd64/gen/sigsetjmp.S
@@ -39,7 +39,6 @@
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
-#include "DEFS.h"
#include "SYS.h"
/*-
diff --git a/lib/libc/amd64/net/htonl.S b/lib/libc/amd64/net/htonl.S
index 551a26239e86..af3354f54795 100644
--- a/lib/libc/amd64/net/htonl.S
+++ b/lib/libc/amd64/net/htonl.S
@@ -41,7 +41,7 @@
/* netorder = htonl(hostorder) */
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(htonl)
movl 4(%esp),%eax
diff --git a/lib/libc/amd64/net/htons.S b/lib/libc/amd64/net/htons.S
index 8f21d4225ac6..c78b1088b42a 100644
--- a/lib/libc/amd64/net/htons.S
+++ b/lib/libc/amd64/net/htons.S
@@ -41,7 +41,7 @@
/* netorder = htons(hostorder) */
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(htons)
movzwl 4(%esp),%eax
diff --git a/lib/libc/amd64/net/ntohl.S b/lib/libc/amd64/net/ntohl.S
index 13328a9e7311..3a2c2025c84d 100644
--- a/lib/libc/amd64/net/ntohl.S
+++ b/lib/libc/amd64/net/ntohl.S
@@ -41,7 +41,7 @@
/* hostorder = ntohl(netorder) */
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(ntohl)
movl 4(%esp),%eax
diff --git a/lib/libc/amd64/net/ntohs.S b/lib/libc/amd64/net/ntohs.S
index 70a42d706156..110faf7b6d77 100644
--- a/lib/libc/amd64/net/ntohs.S
+++ b/lib/libc/amd64/net/ntohs.S
@@ -41,7 +41,7 @@
/* hostorder = ntohs(netorder) */
-#include "DEFS.h"
+#include <machine/asm.h>
ENTRY(ntohs)
movzwl 4(%esp),%eax
diff --git a/lib/libc/amd64/sys/vfork.S b/lib/libc/amd64/sys/vfork.S
index ed2f1522c896..c69ef0f74281 100644
--- a/lib/libc/amd64/sys/vfork.S
+++ b/lib/libc/amd64/sys/vfork.S
@@ -39,7 +39,6 @@
.asciz "$FreeBSD$"
#endif /* SYSLIBC_RCS and not lint */
-#include "DEFS.h"
#include "SYS.h"
/*