diff options
Diffstat (limited to 'sys/arch/powerpc/include/asm.h')
-rw-r--r-- | sys/arch/powerpc/include/asm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/asm.h b/sys/arch/powerpc/include/asm.h index 305a55ef9cc..4812acd9933 100644 --- a/sys/arch/powerpc/include/asm.h +++ b/sys/arch/powerpc/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.9 2012/08/22 17:19:35 pascal Exp $ */ +/* $OpenBSD: asm.h,v 1.10 2013/03/28 17:41:04 martynas Exp $ */ /* $NetBSD: asm.h,v 1.1 1996/09/30 16:34:20 ws Exp $ */ /* @@ -103,6 +103,8 @@ _TMP_LABEL(y):; \ #define RCSID(x) .text; .asciz x +#define STRONG_ALIAS(alias,sym) \ + .global alias; .set alias,sym #define WEAK_ALIAS(alias,sym) \ .weak alias; .set alias,sym |