Commit 449e5bc2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

CURLDEBUG not MALLOCDEBUG anymore

parent 8736c11d
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
#include "test.h"
#include "test.h"


#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
/* provide a proto for this debug function */
/* provide a proto for this debug function */
extern void curl_memdebug(const char *);
extern void curl_memdebug(const char *);
#endif
#endif
@@ -24,7 +24,7 @@ int main(int argc, char **argv)


  fprintf(stderr, "URL: %s\n", URL);
  fprintf(stderr, "URL: %s\n", URL);


#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
  curl_memdebug("memdump");
  curl_memdebug("memdump");
#endif
#endif
  return test(URL);
  return test(URL);