diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-09-05 08:22:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-09-05 08:22:37 +0000 |
commit | b52d06f3372cb4ec3ab32061dd2269f67786157a (patch) | |
tree | 2311afa08692830af2be6b8aeb3f267db9a68aef /sys/arch | |
parent | ab56f2cb25f6a09e5571ab12fc5030139a63ff23 (diff) |
Use __GLOBAL_OFFSET_TABLE_ consistently.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/include/asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/asm.h b/sys/arch/i386/include/asm.h index e3789715d03..c2f3fa9d271 100644 --- a/sys/arch/i386/include/asm.h +++ b/sys/arch/i386/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.4 2000/08/05 22:07:31 niklas Exp $ */ +/* $OpenBSD: asm.h,v 1.5 2001/09/05 08:22:36 espie Exp $ */ /* $NetBSD: asm.h,v 1.7 1994/10/27 04:15:56 cgd Exp $ */ /*- @@ -48,7 +48,7 @@ call 1f; \ 1: \ popl %ebx; \ - addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %ebx + addl $__GLOBAL_OFFSET_TABLE_+[.-1b], %ebx #define PIC_EPILOGUE \ popl %ebx #define PIC_PLT(x) x@PLT |