12 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Id$ */
 | |
| 
 | |
| #include	<stdio.h>
 | |
| #include	<varargs.h>
 | |
| 
 | |
| int
 | |
| vprintf(format, arg)
 | |
| 	char *format;
 | |
| 	va_list arg;
 | |
| {
 | |
| 	return _doprnt(format, arg, stdout);
 | |
| }
 |