git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@571 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1996-06-08 21:53:35 +00:00
parent 025c5d9156
commit 0c0085b3b3

View File

@@ -1,20 +0,0 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
RCSID("$Id$");
#include "roken.h"
#include <stdio.h>
#include <stdarg.h>
int snprintf(char *s, int n, const char *fmt, ...)
{
int ret;
va_list ap;
va_start(ap, fmt);
ret = vsprintf(s, fmt, ap);
va_end(ap);
return ret;
}