attach Berkeley header
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 13 Dec 1987 04:48:42 +0000 (20:48 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 13 Dec 1987 04:48:42 +0000 (20:48 -0800)
SCCS-vsn: lib/libc/stdio/sprintf.c 5.4

usr/src/lib/libc/stdio/sprintf.c

index 2a58f41..ba196a4 100644 (file)
@@ -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)
 #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       <stdio.h>
+#include <stdio.h>
 
 sprintf(str, fmt, args)
 
 sprintf(str, fmt, args)
-char *str, *fmt;
+       char *str, *fmt;
+       int args;
 {
        FILE _strbuf;
        int len;
 {
        FILE _strbuf;
        int len;