mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
tile: use const instead of __const.
This commit is contained in:
parent
975e4ecfd4
commit
5dfe919c9f
@ -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>
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user