From 5be8418cb0856aff4de059802570eb12d558c91f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 29 May 2012 23:55:13 +0200 Subject: Remove use of INTDEF/INTUSE in stdio-common --- string/strsignal.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'string/strsignal.c') diff --git a/string/strsignal.c b/string/strsignal.c index 74ebe3615f..c6b6a5360a 100644 --- a/string/strsignal.c +++ b/string/strsignal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1994-2002, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1991-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 @@ -22,10 +22,6 @@ #include #include - -/* Defined in siglist.c. */ -extern const char *const _sys_siglist[]; -extern const char *const _sys_siglist_internal[] attribute_hidden; static __libc_key_t key; /* If nonzero the key allocation failed and we should better use a @@ -55,7 +51,7 @@ strsignal (int signum) (signum >= SIGRTMIN && signum <= SIGRTMAX) || #endif signum < 0 || signum >= NSIG - || (desc = INTUSE(_sys_siglist)[signum]) == NULL) + || (desc = _sys_siglist[signum]) == NULL) { char *buffer = getbuffer (); int len; -- cgit 1.4.1