m68k: use const instead of __const
authorAndreas Schwab <schwab@linux-m68k.org>
Sun, 8 Jan 2012 13:21:01 +0000 (14:21 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Sun, 8 Jan 2012 13:23:44 +0000 (14:23 +0100)
ChangeLog.m68k
sysdeps/m68k/fpu/bits/fenv.h

index 459f9bc..a668b4e 100644 (file)
@@ -1,5 +1,8 @@
 2012-01-08  Andreas Schwab  <schwab@linux-m68k.org>
 
+       * sysdeps/m68k/fpu/bits/fenv.h (FE_DFL_ENV, FE_NOMASK_ENV): Use
+       const intead of __const.
+
        * sysdeps/m68k/asm-syntax.h: Remove non-ELF support.
        * sysdeps/m68k/sysdep.h: Likewise.
        (NO_UNDERSCORES): Don't define.
index 7c0bcb6..8857284 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000, 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
@@ -71,9 +71,9 @@ typedef struct
 fenv_t;
 
 /* If the default argument is used we use this value.  */
-#define FE_DFL_ENV     ((__const fenv_t *) -1)
+#define FE_DFL_ENV     ((const fenv_t *) -1)
 
 #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