diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-25 22:11:00 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-25 22:11:00 +0000 |
commit | 3629fb9fa6d370a3d60b9e1bf72160c1a7f3bcc8 (patch) | |
tree | 4fa14c4813b442c85227f4d1e22267a36daafc04 | |
parent | 2c067add9c463aafef136c70a0c999661ce12b6e (diff) |
Another missed PIC -> __PIC__ conversion.
ok deraadt@
-rw-r--r-- | sys/arch/arm/include/asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/asm.h b/sys/arch/arm/include/asm.h index 9360d2fa9ec..cf51698c1d0 100644 --- a/sys/arch/arm/include/asm.h +++ b/sys/arch/arm/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.2 2011/03/23 16:54:34 pirofti Exp $ */ +/* $OpenBSD: asm.h,v 1.3 2012/08/25 22:10:59 kettenis Exp $ */ /* $NetBSD: asm.h,v 1.4 2001/07/16 05:43:32 matt Exp $ */ /* @@ -91,7 +91,7 @@ #define ASMSTR .asciz -#if defined(__ELF__) && defined(PIC) +#if defined(__ELF__) && defined(__PIC__) #ifdef __STDC__ #define PIC_SYM(x,y) x ## ( ## y ## ) #else |