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; -}