1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

* hurd/hurd/signal.h: Declare hurd_preempt_signals and

hurd_unpreempt_signals.

	* stdio/stdio.h: Declare __snprintf and __vsnprintf.
This commit is contained in:
Roland McGrath
1995-10-17 09:00:50 +00:00
parent b3a59f408e
commit f2149f697a
4 changed files with 23 additions and 2 deletions

View File

@ -26,7 +26,7 @@ Cambridge, MA 02139, USA. */
#define _sys_siglist sys_siglist
#endif
/* Defined in , 1992siglist.c. */
/* Defined in siglist.c. */
extern CONST char *CONST _sys_siglist[];
@ -37,7 +37,6 @@ DEFUN(strsignal, (signum), int signum)
if (signum < 0 || signum > NSIG)
{
static char buf[512];
static char fmt[] = ;
int len = __snprintf (buf, sizeof buf, _("Unknown signal %d"), signum);
if (len < 0)
return NULL;