git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@387 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			19 lines
		
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifdef HAVE_CONFIG_H
 | 
						|
#include <config.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdarg.h>
 | 
						|
 | 
						|
RCSID("$Id$");
 | 
						|
 | 
						|
int snprintf(char *s, int n, char *fmt, ...)
 | 
						|
{
 | 
						|
  int ret;
 | 
						|
  va_list ap;
 | 
						|
  va_start(ap, fmt);
 | 
						|
  ret = vsprintf(s, fmt, ap);
 | 
						|
  va_end(ap);
 | 
						|
  return ret;
 | 
						|
}
 |