Skip to content

Commit

Permalink
Include <stdarg.h> to make sure va_list is defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Mar 9, 2015
1 parent 54c283d commit d592689
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/rtpp_memdeb.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ void rtpp_memdeb_free(void *, const char *, int, const char *);
void *rtpp_memdeb_realloc(void *, size_t, const char *, int, const char *);
char *rtpp_memdeb_strdup(const char *, const char *, int, const char *);
int rtpp_memdeb_asprintf(char **, const char *, const char *, int, const char *, ...);

#include <stdarg.h>

int rtpp_memdeb_vasprintf(char **, const char *, const char *, int, const char *, va_list);

#define RTPP_CHECK_LEAKS 1

0 comments on commit d592689

Please sign in to comment.