diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-17 09:00:50 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-17 09:00:50 +0000 |
commit | f2149f697a3a5339a30dd6931864a7f5f6904085 (patch) | |
tree | e656b966e3bb09ce75909281fa55e6aa10b134a7 /stdio | |
parent | b3a59f408e7462fbd77289e8c3f50606044a585a (diff) | |
download | glibc-f2149f697a3a5339a30dd6931864a7f5f6904085.tar.gz glibc-f2149f697a3a5339a30dd6931864a7f5f6904085.tar.xz glibc-f2149f697a3a5339a30dd6931864a7f5f6904085.zip |
* hurd/hurd/signal.h: Declare hurd_preempt_signals and
hurd_unpreempt_signals. * stdio/stdio.h: Declare __snprintf and __vsnprintf.
Diffstat (limited to 'stdio')
-rw-r--r-- | stdio/stdio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stdio/stdio.h b/stdio/stdio.h index a36081d2d4..347e1868a9 100644 --- a/stdio/stdio.h +++ b/stdio/stdio.h @@ -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)); |