From abf7eaa91e2ece0f461c71d3dcc0b2900c199209 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 14 Sep 2011 02:05:54 +0200 Subject: Remove asprintf.h from src/ --- src/asprintf.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/asprintf.h (limited to 'src') diff --git a/src/asprintf.h b/src/asprintf.h deleted file mode 100644 index 3b0072e..0000000 --- a/src/asprintf.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef ASPRINTF_H -#define ASPRINTF_H - -#ifdef HAVE_CONFIG_H -#include -#endif - -#ifndef HAVE_VASPRINTF -static inline int vasprintf(char **PTR, const char *TEMPLATE, va_list AP) -{ - int res; - res = vsnprintf(NULL, 32768, TEMPLATE, AP); - if (res > 0) { - *PTR = (char*)malloc(res+1); - res = vsnprintf(*PTR, res, TEMPLATE, AP); - } - return res; -} -#endif - -#ifndef HAVE_ASPRINTF -static inline int asprintf(char **PTR, const char *TEMPLATE, ...) -{ - int res; - va_list AP; - va_start(AP, TEMPLATE); - res = vasprintf(PTR, TEMPLATE, AP); - va_end(AP); - return res; -} -#endif - -#endif /* ASPRINTF_H */ -- cgit v1.1-32-gdbae