]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
tile: use const instead of __const.
authorChris Metcalf <cmetcalf@tilera.com>
Tue, 31 Jan 2012 16:46:09 +0000 (11:46 -0500)
committerChris Metcalf <cmetcalf@tilera.com>
Tue, 31 Jan 2012 16:46:09 +0000 (11:46 -0500)
ChangeLog.tile
sysdeps/tile/bits/fenv.h
sysdeps/unix/sysv/linux/tile/sys/cachectl.h

index 09495c43c9cf920b621d3584b425736586e604ba..095b4fe8b3d814da5b096b926bff07b21b36047d 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-31  Chris Metcalf  <cmetcalf@tilera.com>
+
+       * sysdeps/tile/bits/fenv.h: Use const instead of __const.
+       * sysdeps/unix/sysv/linux/tile/sys/cachectl.h: Likewise.
+
 2012-01-31  Chris Metcalf  <cmetcalf@tilera.com>
 
        * sysdeps/tile/sysdep.h: Use <feedback.h> not <feedback-asm.h>
index 56fe6fd9110a586eaca1fbb5678486a5b2ff3c23..0e12c04034719a54de9769a2a1102c2c0d4ffb9c 100644 (file)
@@ -40,4 +40,4 @@ typedef unsigned int fexcept_t;
 typedef unsigned int fenv_t;
 
 /* If the default argument is used we use this value.  */
-#define FE_DFL_ENV     ((__const fenv_t *) -1l)
+#define FE_DFL_ENV     ((const fenv_t *) -1l)
index 72d9e21381b7c6188fab86cb81dc8a527567c655..308aefbbe51e3ec93dcc3a268342eea0dddc2df7 100644 (file)
@@ -28,9 +28,9 @@
 __BEGIN_DECLS
 
 #ifdef __USE_MISC
-extern int cacheflush (void *__addr, __const int __nbytes, __const int __op) __THROW;
+extern int cacheflush (void *__addr, const int __nbytes, const int __op) __THROW;
 #endif
-extern int _flush_cache (char *__addr, __const int __nbytes, __const int __op) __THROW;
+extern int _flush_cache (char *__addr, const int __nbytes, const int __op) __THROW;
 
 __END_DECLS