diff options
| author | mycroft <mycroft@NetBSD.org> | 1993-06-16 21:42:43 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1993-06-16 21:42:43 +0000 |
| commit | 409bc91101bcc44692c293ac1bf9d51d1ca89e35 (patch) | |
| tree | ee58630f2df7e08057a0dc1fb1534012054337e3 /lib/libc | |
| parent | 506aa1b450d8c64a9796312f1a4b796abeae6b38 (diff) | |
Move asm.h from /usr/include/sys to /usr/include/machine.
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/i386/DEFS.h | 2 | ||||
| -rw-r--r-- | lib/libc/i386/SYS.h | 2 | ||||
| -rw-r--r-- | lib/libc/i386/gen/modf.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/bcopy.s | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/bzero.s | 2 | ||||
| -rw-r--r-- | lib/libc/i386/string/memmove.s | 6 |
6 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/i386/DEFS.h b/lib/libc/i386/DEFS.h index 1de9f0add63..f55bc3a945c 100644 --- a/lib/libc/i386/DEFS.h +++ b/lib/libc/i386/DEFS.h @@ -1 +1 @@ -#include <sys/asm.h> +#include <machine/asm.h> diff --git a/lib/libc/i386/SYS.h b/lib/libc/i386/SYS.h index e6e31fe490a..c848988a9d2 100644 --- a/lib/libc/i386/SYS.h +++ b/lib/libc/i386/SYS.h @@ -36,7 +36,7 @@ * @(#)SYS.h 5.5 (Berkeley) 5/7/91 */ -#include <sys/asm.h> +#include <machine/asm.h> #include <sys/syscall.h> #define SYSCALL(x) 2: jmp cerror; ENTRY(x); lea SYS_/**/x,%eax; LCALL(7,0); jb 2b diff --git a/lib/libc/i386/gen/modf.s b/lib/libc/i386/gen/modf.s index 69f607ec02f..9549153e49a 100644 --- a/lib/libc/i386/gen/modf.s +++ b/lib/libc/i386/gen/modf.s @@ -38,7 +38,7 @@ .asciz "@(#)modf.s 5.5 (Berkeley) 3/18/91" #endif /* LIBC_SCCS and not lint */ -#include <sys/asm.h> +#include "DEFS.h" /* * modf(value, iptr): return fractional part of value, and stores the diff --git a/lib/libc/i386/string/bcopy.s b/lib/libc/i386/string/bcopy.s index 76d0de20208..03ffd9d3567 100644 --- a/lib/libc/i386/string/bcopy.s +++ b/lib/libc/i386/string/bcopy.s @@ -33,12 +33,12 @@ * SUCH DAMAGE. */ -#include <sys/asm.h> - #if defined(LIBC_RCS) && !defined(lint) - .asciz "$ID$" + .asciz "$Id $" #endif /* LIBC_RCS and not lint */ +#include "DEFS.h" + /* * (ov)bcopy (src,dst,cnt) * ws@tools.de (Wolfgang Solfrank, TooLs GmbH) +49-228-985800 diff --git a/lib/libc/i386/string/bzero.s b/lib/libc/i386/string/bzero.s index 4989a9b88e4..a5df499959b 100644 --- a/lib/libc/i386/string/bzero.s +++ b/lib/libc/i386/string/bzero.s @@ -38,7 +38,7 @@ .asciz "@(#)bzero.s 5.1 (Berkeley) 4/23/90" #endif /* LIBC_SCCS and not lint */ -#include <sys/asm.h> +#include "DEFS.h" /* bzero (base,cnt) */ diff --git a/lib/libc/i386/string/memmove.s b/lib/libc/i386/string/memmove.s index 4879dbad20a..74076ad50af 100644 --- a/lib/libc/i386/string/memmove.s +++ b/lib/libc/i386/string/memmove.s @@ -33,12 +33,12 @@ * SUCH DAMAGE. */ -#include <sys/asm.h> - #if defined(LIBC_RCS) && !defined(lint) - .asciz "$ID$" + .asciz "$Id $" #endif /* LIBC_RCS and not lint */ +#include "DEFS.h" + /* * (ov)bcopy (src,dst,cnt) * ws@tools.de (Wolfgang Solfrank, TooLs GmbH) +49-228-985800 |
