From f6ab8089c6f3c01370add0f7e9a940b8bfbc8ee5 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Tue, 13 Dec 2011 13:32:56 +0000 Subject: Replace __const by const in all non-contributed source code. As C1X is close to being released, there is no need to wrap around a feature that is already part of C90. Most of these files already use `const' in different placed as well. --- include/signal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/signal.h') diff --git a/include/signal.h b/include/signal.h index 32b9e6b4ad71..e7447dfd053d 100644 --- a/include/signal.h +++ b/include/signal.h @@ -42,9 +42,9 @@ * XXX should enlarge these, if only to give empty names instead of bounds * errors for large signal numbers. */ -extern __const char *__const sys_signame[NSIG]; -extern __const char *__const sys_siglist[NSIG]; -extern __const int sys_nsig; +extern const char * const sys_signame[NSIG]; +extern const char * const sys_siglist[NSIG]; +extern const int sys_nsig; #endif #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE -- cgit v1.2.3