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-08 21:29:22 +0100 |
commit | 5423bf6db89c14b49fd9059357faa94e19a73e2c (patch) | |
tree | 03be2f399b12c67f65cb9784a3b4c9b064a70905 | |
parent | 648471eceeea1e93d085a250cb8804e71af567b0 (diff) | |
download | rtmux-5423bf6db89c14b49fd9059357faa94e19a73e2c.tar.gz rtmux-5423bf6db89c14b49fd9059357faa94e19a73e2c.tar.bz2 rtmux-5423bf6db89c14b49fd9059357faa94e19a73e2c.zip |
Missing headers from compat/asprintf.c, from cyyever at outlook dot com.
-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, ...) |