diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-06-26 13:35:31 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-06-26 13:35:31 -0700 |
commit | a3dd035d9d87273d2feae6910f80fe888f6aeba0 (patch) | |
tree | 9a65c19da9dd53e72ac50249c6968f5853fc7e66 | |
parent | 28b0a8c9f3d322d04bee9beb54fc4d097098ba59 (diff) | |
download | glibc-a3dd035d9d87273d2feae6910f80fe888f6aeba0.tar.gz glibc-a3dd035d9d87273d2feae6910f80fe888f6aeba0.tar.xz glibc-a3dd035d9d87273d2feae6910f80fe888f6aeba0.zip |
Add missing #include <fpu_control.h> to ARM fesetenv/feupdateenv.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/arm/fesetenv.c | 1 | ||||
-rw-r--r-- | sysdeps/arm/feupdateenv.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 4ebff50be0..e522e41c9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-06-26 Roland McGrath <roland@hack.frob.com> + * sysdeps/arm/fesetenv.c: Include <fpu_control.h>. + * sysdeps/arm/feupdateenv.c: Likewise. + * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl. 2014-06-26 Joseph Myers <joseph@codesourcery.com> diff --git a/sysdeps/arm/fesetenv.c b/sysdeps/arm/fesetenv.c index ac47ae2d49..45187c079f 100644 --- a/sysdeps/arm/fesetenv.c +++ b/sysdeps/arm/fesetenv.c @@ -17,6 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <fenv.h> +#include <fpu_control.h> #include <arm-features.h> diff --git a/sysdeps/arm/feupdateenv.c b/sysdeps/arm/feupdateenv.c index d8116789d0..f9a1f28552 100644 --- a/sysdeps/arm/feupdateenv.c +++ b/sysdeps/arm/feupdateenv.c @@ -18,6 +18,7 @@ <http://www.gnu.org/licenses/>. */ #include <fenv.h> +#include <fpu_control.h> #include <arm-features.h> |