diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-01 20:15:58 +0000 | 
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-01 20:15:58 +0000 | 
| commit | 8c6d2f42e1780917ba89400da7b7c084e56d7c49 (patch) | |
| tree | a1cc9a6883d176b25bb26bdb75c5ba08b25e5a72 /lib/libc/stdio/snprintf.c | |
| parent | 069db8db4751c2245fa1ea0cd5ed289d86820abf (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/snprintf.c')
| -rw-r--r-- | lib/libc/stdio/snprintf.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lib/libc/stdio/snprintf.c b/lib/libc/stdio/snprintf.c index aa70bb2d59e6..a4c04d94c0da 100644 --- a/lib/libc/stdio/snprintf.c +++ b/lib/libc/stdio/snprintf.c @@ -39,16 +39,16 @@  static char sccsid[] = "@(#)snprintf.c	8.1 (Berkeley) 6/4/93";  #endif  static const char rcsid[] = -		"$Id: snprintf.c,v 1.9 1997/12/24 23:02:40 ache Exp $"; +		"$Id: snprintf.c,v 1.10 1997/12/24 23:54:13 ache Exp $";  #endif /* LIBC_SCCS and not lint */ +#include <limits.h>  #include <stdio.h>  #if __STDC__  #include <stdarg.h>  #else  #include <varargs.h>  #endif -#include <limits.h>  #if __STDC__  int @@ -62,16 +62,16 @@ snprintf(str, n, fmt, va_alist)  	va_dcl  #endif  { +	size_t on;  	int ret;  	va_list ap;  	FILE f; -	size_t on;  	on = n; -	if (n > 0) +	if (n != 0)  		n--;  	if (n > INT_MAX) -		return (EOF); +		n = INT_MAX;  #if __STDC__  	va_start(ap, fmt);  #else | 
