diff options
author | 1995-12-30 08:15:39 +0000 | |
---|---|---|
committer | 1995-12-30 08:15:39 +0000 | |
commit | 8eaac68b0c809f9b1da32502e37297b56e24494e (patch) | |
tree | b9670689755a7cb1e8e1442ae87ebc2f3ba37042 /lib/libc | |
parent | from netbsd: (diff) | |
download | wireguard-openbsd-8eaac68b0c809f9b1da32502e37297b56e24494e.tar.xz wireguard-openbsd-8eaac68b0c809f9b1da32502e37297b56e24494e.zip |
from netbsd: Use <machine/asm.h> instead of DEFS.h
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/i386/gen/_setjmp.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/alloca.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/divsi3.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/fabs.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/fixdfsi.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/modf.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/i386/gen/udivsi3.S | 8 |
7 files changed, 28 insertions, 28 deletions
diff --git a/lib/libc/arch/i386/gen/_setjmp.S b/lib/libc/arch/i386/gen/_setjmp.S index 62890790b6b..dabfddd574f 100644 --- a/lib/libc/arch/i386/gen/_setjmp.S +++ b/lib/libc/arch/i386/gen/_setjmp.S @@ -34,12 +34,14 @@ * SUCH DAMAGE. * * from: @(#)_setjmp.s 5.1 (Berkeley) 4/23/90 - * $Id: _setjmp.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $ + * $Id: _setjmp.S,v 1.2 1995/12/30 08:15:39 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: _setjmp.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $" + .asciz "$Id: _setjmp.S,v 1.2 1995/12/30 08:15:39 deraadt Exp $" #endif /* @@ -52,8 +54,6 @@ * The previous signal state is NOT restored. */ -#include "DEFS.h" - ENTRY(_setjmp) movl 4(%esp),%eax movl 0(%esp),%edx diff --git a/lib/libc/arch/i386/gen/alloca.S b/lib/libc/arch/i386/gen/alloca.S index f5004c945f5..99c97896312 100644 --- a/lib/libc/arch/i386/gen/alloca.S +++ b/lib/libc/arch/i386/gen/alloca.S @@ -34,18 +34,18 @@ * SUCH DAMAGE. * * from: @(#)alloca.s 5.2 (Berkeley) 5/14/90 - * $Id: alloca.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $ + * $Id: alloca.S,v 1.2 1995/12/30 08:15:39 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: alloca.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $" + .asciz "$Id: alloca.S,v 1.2 1995/12/30 08:15:39 deraadt Exp $" #endif /* like alloc, but automatic automatic free in return */ -#include "DEFS.h" - ENTRY(alloca) popl %edx /* pop return addr */ popl %eax /* pop amount to allocate */ diff --git a/lib/libc/arch/i386/gen/divsi3.S b/lib/libc/arch/i386/gen/divsi3.S index 24ff9f5496c..282a7f1360b 100644 --- a/lib/libc/arch/i386/gen/divsi3.S +++ b/lib/libc/arch/i386/gen/divsi3.S @@ -34,16 +34,16 @@ * SUCH DAMAGE. * * from: @(#)divsi3.s 5.1 (Berkeley) 5/15/90 - * $Id: divsi3.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $ + * $Id: divsi3.S,v 1.2 1995/12/30 08:15:40 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: divsi3.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $" + .asciz "$Id: divsi3.S,v 1.2 1995/12/30 08:15:40 deraadt Exp $" #endif -#include "DEFS.h" - ENTRY(__divsi3) movl 4(%esp),%eax cltd diff --git a/lib/libc/arch/i386/gen/fabs.S b/lib/libc/arch/i386/gen/fabs.S index 1ca14e2d3d1..2554b9d5d08 100644 --- a/lib/libc/arch/i386/gen/fabs.S +++ b/lib/libc/arch/i386/gen/fabs.S @@ -34,16 +34,16 @@ * SUCH DAMAGE. * * from: @(#)fabs.s 5.2 (Berkeley) 12/17/90 - * $Id: fabs.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $ + * $Id: fabs.S,v 1.2 1995/12/30 08:15:41 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: fabs.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $" + .asciz "$Id: fabs.S,v 1.2 1995/12/30 08:15:41 deraadt Exp $" #endif -#include "DEFS.h" - ENTRY(fabs) fldl 4(%esp) fabs diff --git a/lib/libc/arch/i386/gen/fixdfsi.S b/lib/libc/arch/i386/gen/fixdfsi.S index 694376ae4bd..94a3732a2c9 100644 --- a/lib/libc/arch/i386/gen/fixdfsi.S +++ b/lib/libc/arch/i386/gen/fixdfsi.S @@ -34,16 +34,16 @@ * SUCH DAMAGE. * * from: @(#)fixdfsi.s 5.4 (Berkeley) 4/12/91 - * $Id: fixdfsi.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $ + * $Id: fixdfsi.S,v 1.2 1995/12/30 08:15:42 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: fixdfsi.S,v 1.1.1.1 1995/10/18 08:41:23 deraadt Exp $" + .asciz "$Id: fixdfsi.S,v 1.2 1995/12/30 08:15:42 deraadt Exp $" #endif -#include "DEFS.h" - ENTRY(__fixdfsi) fldl 4(%esp) fistpl 4(%esp) diff --git a/lib/libc/arch/i386/gen/modf.S b/lib/libc/arch/i386/gen/modf.S index eced6f280b1..822d674a9fc 100644 --- a/lib/libc/arch/i386/gen/modf.S +++ b/lib/libc/arch/i386/gen/modf.S @@ -34,16 +34,16 @@ * SUCH DAMAGE. * * from: @(#)modf.s 5.5 (Berkeley) 3/18/91 - * $Id: modf.S,v 1.1.1.1 1995/10/18 08:41:24 deraadt Exp $ + * $Id: modf.S,v 1.2 1995/12/30 08:15:42 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: modf.S,v 1.1.1.1 1995/10/18 08:41:24 deraadt Exp $" + .asciz "$Id: modf.S,v 1.2 1995/12/30 08:15:42 deraadt Exp $" #endif -#include "DEFS.h" - /* * modf(value, iptr): return fractional part of value, and stores the * integral part into iptr (a pointer to double). diff --git a/lib/libc/arch/i386/gen/udivsi3.S b/lib/libc/arch/i386/gen/udivsi3.S index 7dfb920acdb..cbb171837e3 100644 --- a/lib/libc/arch/i386/gen/udivsi3.S +++ b/lib/libc/arch/i386/gen/udivsi3.S @@ -34,16 +34,16 @@ * SUCH DAMAGE. * * from: @(#)udivsi3.s 5.1 (Berkeley) 5/15/90 - * $Id: udivsi3.S,v 1.1.1.1 1995/10/18 08:41:24 deraadt Exp $ + * $Id: udivsi3.S,v 1.2 1995/12/30 08:15:43 deraadt Exp $ */ +#include <machine/asm.h> + #if defined(LIBC_SCCS) .text - .asciz "$Id: udivsi3.S,v 1.1.1.1 1995/10/18 08:41:24 deraadt Exp $" + .asciz "$Id: udivsi3.S,v 1.2 1995/12/30 08:15:43 deraadt Exp $" #endif -#include "DEFS.h" - ENTRY(__udivsi3) movl 4(%esp),%eax xorl %edx,%edx |