chiark / gitweb /
Replace x[v]asprintf with m[v]asprintf; libinn2 has one now
[innduct.git] / innduct.h
index 5a337cde6b5b55b8f3010c32dba444de1a8c35e6..08ab9bcde45a93f8b1fd18d2c486bcd35bb4fa3f 100644 (file)
--- a/innduct.h
+++ b/innduct.h
@@ -323,8 +323,8 @@ void dbg(const char *fmt, ...) PRINTF(1,2);
 void logv(int sysloglevel, const char *pfx, int errnoval,
          const char *fmt, va_list al) PRINTF(5,0);
 
-char *xvasprintf(const char *fmt, va_list al) PRINTF(1,0);
-char *xasprintf(const char *fmt, ...) PRINTF(1,2);
+char *mvasprintf(const char *fmt, va_list al) PRINTF(1,0);
+char *masprintf(const char *fmt, ...) PRINTF(1,2);
 
 int close_perhaps(int *fd);
 void xclose(int fd, const char *what, const char *what2);