aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-01-08 13:06:46 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-01-08 13:06:46 +0000
commit57920720f2dceb5ee711409c0fb63229e4ceceb5 (patch)
tree9bdacc13c379f35b80792774e82447f24736405e
parent7b583f0ab7ba2c141a3cd5c86436a9afee88bbb7 (diff)
downloadglibc-57920720f2dceb5ee711409c0fb63229e4ceceb5.tar.xz
glibc-57920720f2dceb5ee711409c0fb63229e4ceceb5.zip
Use const instead of __const for ARM.
-rw-r--r--ChangeLog.arm4
-rw-r--r--sysdeps/arm/eabi/bits/fenv.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog.arm b/ChangeLog.arm
index 377439a665..62531a4493 100644
--- a/ChangeLog.arm
+++ b/ChangeLog.arm
@@ -1,5 +1,9 @@
2012-01-08 Joseph Myers <joseph@codesourcery.com>
+ * sysdeps/arm/eabi/bits/fenv.h: Use const instead of __const.
+
+2012-01-08 Joseph Myers <joseph@codesourcery.com>
+
* sysdeps/arm/sysdep.h: Don't test or define NO_UNDERSCORES.
* sysdeps/unix/arm/start.c: Don't test HAVE_WEAK_SYMBOLS or
NO_UNDERSCORES.
diff --git a/sysdeps/arm/eabi/bits/fenv.h b/sysdeps/arm/eabi/bits/fenv.h
index 816ebe773e..3bef3980cb 100644
--- a/sysdeps/arm/eabi/bits/fenv.h
+++ b/sysdeps/arm/eabi/bits/fenv.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+/* Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -70,5 +70,5 @@ fenv_t;
#ifdef __USE_GNU
/* Floating-point environment where none of the exceptions are masked. */
-# define FE_NOMASK_ENV ((__const fenv_t *) -2)
+# define FE_NOMASK_ENV ((const fenv_t *) -2)
#endif