Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-09-14 02:06:43 +0400
committerJeff Johnston <jjohnstn@redhat.com>2006-09-14 02:06:43 +0400
commitba1bb1b36812647e07e0822238a603482b886eff (patch)
tree8ecea18e2b04e3d90e988646a5e81dbf89fbb25f /newlib/libm
parent8552e20ec41312d5e6cc33011a1023b9db03cff3 (diff)
2006-09-13 Patrick Mansfield <patmans@us.ibm.com>
* libc/include/math.h: Remove _CONST from _LIB_VERSION, as it is supposed to be writable. * libm/common/s_lib_ver.c: Ditto.
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/common/s_lib_ver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libm/common/s_lib_ver.c b/newlib/libm/common/s_lib_ver.c
index d42f62404..15c8b4166 100644
--- a/newlib/libm/common/s_lib_ver.c
+++ b/newlib/libm/common/s_lib_ver.c
@@ -21,15 +21,15 @@
* define and initialize _LIB_VERSION
*/
#ifdef _POSIX_MODE
-_CONST _LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
+_LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
#else
#ifdef _XOPEN_MODE
-_CONST _LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_;
+_LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_;
#else
#ifdef _SVID3_MODE
-_CONST _LIB_VERSION_TYPE _LIB_VERSION = _SVID_;
+_LIB_VERSION_TYPE _LIB_VERSION = _SVID_;
#else /* default _IEEE_MODE */
-_CONST _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
+_LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
#endif
#endif
#endif