From fc40c3803491ed1b27be60a2aed9e13acdb4c16b Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Wed, 24 May 2006 19:03:01 +0000 Subject: [PATCH] sorry forget cleanup after me ;) svn path=/trunk/; revision=22013 --- reactos/lib/crt/conio/cprintf.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/reactos/lib/crt/conio/cprintf.c b/reactos/lib/crt/conio/cprintf.c index dc2aa6e0729..32d3f4da291 100644 --- a/reactos/lib/crt/conio/cprintf.c +++ b/reactos/lib/crt/conio/cprintf.c @@ -33,19 +33,4 @@ _cprintf(const char *fmt, ...) if (mem != buf) free (mem); return retval; - - -/* - va_list ap; - - va_start(ap, fmt); - while (vsprintf(buf, fmt, ap)==-1) - { - if (cnt < 0) - - va_end(ap); - - _cputs(buf); - return cnt; - */ }