diff options
author | peter <peter@FreeBSD.org> | 2007-07-04 23:35:18 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2007-07-04 23:35:18 +0000 |
commit | cafab8ccf64f7b0e62c77cc8aea9dfdd93420b76 (patch) | |
tree | e566d494ca71bbc0800dfea250b6521110159118 /lib/libc/arm/SYS.h | |
parent | 6503b7ab8d618630e8e1d6edc5d7e397e7dcca26 (diff) | |
download | FreeBSD-src-cafab8ccf64f7b0e62c77cc8aea9dfdd93420b76.zip FreeBSD-src-cafab8ccf64f7b0e62c77cc8aea9dfdd93420b76.tar.gz |
Add missing \ characters in PSEUDO() macro on arm. Oops.
Submitted by: cognet
Approved by: re (kensmith)
Diffstat (limited to 'lib/libc/arm/SYS.h')
-rw-r--r-- | lib/libc/arm/SYS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arm/SYS.h b/lib/libc/arm/SYS.h index 223c26b..558ce47 100644 --- a/lib/libc/arm/SYS.h +++ b/lib/libc/arm/SYS.h @@ -63,8 +63,8 @@ ENTRY(__CONCAT(__sys_, x)); \ .weak _C_LABEL(__CONCAT(_,x)); \ .set _C_LABEL(__CONCAT(_,x)),_C_LABEL(__CONCAT(__sys_,x)); \ - SYSTRAP(x) - bcs PIC_SYM(CERROR, PLT) + SYSTRAP(x) \ + bcs PIC_SYM(CERROR, PLT) \ RET #define RSYSCALL(x) \ |