Skip to content

Commit d592689

Browse files
committed
Include <stdarg.h> to make sure va_list is defined.
1 parent 54c283d commit d592689

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/rtpp_memdeb.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ void rtpp_memdeb_free(void *, const char *, int, const char *);
4747
void *rtpp_memdeb_realloc(void *, size_t, const char *, int, const char *);
4848
char *rtpp_memdeb_strdup(const char *, const char *, int, const char *);
4949
int rtpp_memdeb_asprintf(char **, const char *, const char *, int, const char *, ...);
50+
51+
#include <stdarg.h>
52+
5053
int rtpp_memdeb_vasprintf(char **, const char *, const char *, int, const char *, va_list);
5154

5255
#define RTPP_CHECK_LEAKS 1

0 commit comments

Comments
 (0)