diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-13 21:48:22 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:23 +0200 |
commit | 8350c7e88273644e42322bd0e1007b9df3dc9def (patch) | |
tree | 9420c0a73972b80b48f294173cd0b570d93dcecd /libc/sysdeps/linux/nios2/jmpbuf-offsets.h | |
parent | c53099f7dfa350391785fc3ded1e9d077f45417f (diff) |
change __HAVE_FPU__ to __UCLIBC_HAS_FPU__
add features.h where necessary
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/nios2/jmpbuf-offsets.h')
-rw-r--r-- | libc/sysdeps/linux/nios2/jmpbuf-offsets.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/nios2/jmpbuf-offsets.h b/libc/sysdeps/linux/nios2/jmpbuf-offsets.h index 3ade24e01..b7d19cafb 100644 --- a/libc/sysdeps/linux/nios2/jmpbuf-offsets.h +++ b/libc/sysdeps/linux/nios2/jmpbuf-offsets.h @@ -4,6 +4,8 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ +#include <features.h> + #define JB_REGS 0 #define JB_PC 32 #define JB_SP 36 @@ -11,7 +13,7 @@ #define JB_GP 44 #define JB_FPREGS 48 -#if defined __UCLIBC_HAS_FPU__ +#ifdef __UCLIBC_HAS_FPU__ # define JB_SIZE 304 #else # define JB_SIZE 48 |