diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2015-04-07 09:52:14 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2015-04-07 09:52:14 +0000 |
commit | d422e6f9b5dc816cd43a5d33b04b7f04ba7716d7 (patch) | |
tree | d8b528082a4826fd925994b8d74a566e47df3139 /lib/libc/xdr/xdr_float.c | |
parent | 9df9c6bc0d6cd25b117b6bf20c01b81b9b635f3c (diff) |
Add the start of libc and libstand for arm64. Not all of the machine
dependent functions have been implemented, but this is enough for world.
Differential Revision: https://reviews.freebsd.org/D2132
Reviewed by: emaste
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=281197
Diffstat (limited to 'lib/libc/xdr/xdr_float.c')
-rw-r--r-- | lib/libc/xdr/xdr_float.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/xdr/xdr_float.c b/lib/libc/xdr/xdr_float.c index 11358069e00c..1d3bb617dfc2 100644 --- a/lib/libc/xdr/xdr_float.c +++ b/lib/libc/xdr/xdr_float.c @@ -64,7 +64,8 @@ __FBSDID("$FreeBSD$"); #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ defined(__arm__) || defined(__ppc__) || \ - defined(__arm26__) || defined(__sparc64__) || defined(__amd64__) + defined(__arm26__) || defined(__sparc64__) || defined(__amd64__) || \ + defined(__aarch64__) #include <machine/endian.h> #define IEEEFP #endif |