1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +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

@ -401,9 +401,13 @@ vprintf (const char *__fmt, __gnuc_va_list __arg)
#ifdef __USE_GNU
/* Maximum chars of output to write in MAXLEN. */
extern int __snprintf __P ((char *__s, size_t __maxlen,
__const char *__format, ...));
extern int snprintf __P ((char *__s, size_t __maxlen,
__const char *__format, ...));
extern int __vsnprintf __P ((char *__s, size_t __maxlen,
__const char *__format, __gnuc_va_list __arg));
extern int vsnprintf __P ((char *__s, size_t __maxlen,
__const char *__format, __gnuc_va_list __arg));