diff options
-rw-r--r-- | tst/va_test.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tst/va_test.c b/tst/va_test.c index 0413f99..b8a83f4 100644 --- a/tst/va_test.c +++ b/tst/va_test.c @@ -3,20 +3,6 @@ #include <stdarg.h> #include <string.h> -/* -#define espik_debug_print (...) \ -{ \ - va_list __ap; \ - char* __output; \ - __output = malloc (sizeof(char)* (strlen (__FUNCTION__", "__FILE__", "__LINE__" : ") + strlen(...))); \ - sprintf (__output, "%s: %s", __FUNCTION__", "__FILE__", "__LINE__" : ", ...); \ - va_start (__ap, __output); \ - vfprintf (stdout, __output, ap); \ - va_end (__ap); \ - free (__output); \ -} -*/ - #ifdef __GNUC__ #define espik_debug_print (fmt, ...) \ |