diff options
author | andrew <andrew@FreeBSD.org> | 2015-05-31 12:53:10 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-05-31 12:53:10 +0000 |
commit | d59d348b51fb13c54eb006186153f1dfacf301a9 (patch) | |
tree | d62987da84d2b0683362be2dff4388e825f8a8cf /lib/libc/arm/SYS.h | |
parent | 5577b97ec5a97ffb3d5f88e46e276fae23c2ffa7 (diff) | |
download | FreeBSD-src-d59d348b51fb13c54eb006186153f1dfacf301a9.zip FreeBSD-src-d59d348b51fb13c54eb006186153f1dfacf301a9.tar.gz |
Remove __ARM_EABI__ from more places in libc as this is the only ARM ABI
we support.
Diffstat (limited to 'lib/libc/arm/SYS.h')
-rw-r--r-- | lib/libc/arm/SYS.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libc/arm/SYS.h b/lib/libc/arm/SYS.h index 3254c45..1173087 100644 --- a/lib/libc/arm/SYS.h +++ b/lib/libc/arm/SYS.h @@ -39,15 +39,11 @@ #include <sys/syscall.h> #include <machine/swi.h> -#ifdef __ARM_EABI__ #define SYSTRAP(x) \ mov ip, r7; \ ldr r7, =SYS_ ## x; \ swi 0; \ mov r7, ip -#else -#define SYSTRAP(x) swi 0 | SYS_ ## x -#endif #define CERROR _C_LABEL(cerror) #define CURBRK _C_LABEL(curbrk) |