From 0c0085b3b36a0965747be14a87c4902d48335aed Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Sat, 8 Jun 1996 21:53:35 +0000 Subject: [PATCH] Not used git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@571 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/snprintf.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 lib/roken/snprintf.c diff --git a/lib/roken/snprintf.c b/lib/roken/snprintf.c deleted file mode 100644 index 3bd6281f2..000000000 --- a/lib/roken/snprintf.c +++ /dev/null @@ -1,20 +0,0 @@ -#ifdef HAVE_CONFIG_H -#include -#endif - -RCSID("$Id$"); - -#include "roken.h" - -#include -#include - -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; -}