From 6f1093184a0ed5f20ddb650176dea962cdc19e05 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sat, 12 Dec 1987 20:48:42 -0800 Subject: [PATCH] attach Berkeley header SCCS-vsn: lib/libc/stdio/sprintf.c 5.4 --- usr/src/lib/libc/stdio/sprintf.c | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/usr/src/lib/libc/stdio/sprintf.c b/usr/src/lib/libc/stdio/sprintf.c index 2a58f41ba0..ba196a4545 100644 --- a/usr/src/lib/libc/stdio/sprintf.c +++ b/usr/src/lib/libc/stdio/sprintf.c @@ -1,11 +1,24 @@ +/* + * Copyright (c) 1987 Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and that due credit is given + * to the University of California at Berkeley. The name of the University + * may not be used to endorse or promote products derived from this + * software without specific prior written permission. This software + * is provided ``as is'' without express or implied warranty. + */ + #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)sprintf.c 5.3 (Berkeley) %G%"; -#endif LIBC_SCCS and not lint +static char sccsid[] = "@(#)sprintf.c 5.4 (Berkeley) %G%"; +#endif /* LIBC_SCCS and not lint */ -#include +#include sprintf(str, fmt, args) -char *str, *fmt; + char *str, *fmt; + int args; { FILE _strbuf; int len; -- 2.20.1