[Commit] nickle printf.5c,1.5,1.6

Bart Massey commit at keithp.com
Mon Jun 16 21:53:16 PDT 2003


Committed by: bart

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv21077

Modified Files:
	printf.5c 
Log Message:
Added vprintf()



Index: printf.5c
===================================================================
RCS file: /local/src/CVS/nickle/printf.5c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- printf.5c	11 Jun 2003 05:01:55 -0000	1.5
+++ printf.5c	17 Jun 2003 03:53:14 -0000	1.6
@@ -198,9 +198,14 @@
 	vfprintf (f, format, args);
     }
 
-    public void printf (string format, poly args...)
+    public void vprintf (string format, poly[*] args)
     {
 	vfprintf (stdout, format, args);
+    }
+
+    public void printf (string format, poly args...)
+    {
+	vprintf (format, args);
     }
     
     public string vsprintf (string format, poly[*] args)




More information about the Commit mailing list