diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-09-08 21:29:22 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-09-16 08:59:57 +0100 |
commit | 54670d898fd010831b785d003421fef847de6776 (patch) | |
tree | b2a1bfe7d5d0b27e9b9692b1847290662d1411e1 /compat/asprintf.c | |
parent | c45b255a885f36e033e1dfba1776fb5c04bfb6cf (diff) | |
download | rtmux-54670d898fd010831b785d003421fef847de6776.tar.gz rtmux-54670d898fd010831b785d003421fef847de6776.tar.bz2 rtmux-54670d898fd010831b785d003421fef847de6776.zip |
Missing headers from compat/asprintf.c, from cyyever at outlook dot com.
Diffstat (limited to 'compat/asprintf.c')
-rw-r--r-- | compat/asprintf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/asprintf.c b/compat/asprintf.c index 95d78430..187c19f0 100644 --- a/compat/asprintf.c +++ b/compat/asprintf.c @@ -19,8 +19,10 @@ #include <stdarg.h> #include <stdio.h> #include <string.h> +#include <stdlib.h> #include "compat.h" +#include "xmalloc.h" int asprintf(char **ret, const char *fmt, ...) |