]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 459f9bc1e5dc6cc79391a3e46e13f885e96c258d..a668b4e81dedff444701b532a606f72c27fc6f7d 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 7c0bcb66977f4545f3eec338732d2512e84a885b..885728434e472c75339a1c02e4b8c60d7dd90603 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