Commit 308bc9d9 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions

parent db566c54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ Content-Disposition: form-data; name="FILECONTENT"
#include "strequal.h"

/* The last #include file should be: */
#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
#include "memdebug.h"
#endif

+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
#include <unixlib.h>
#endif

#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
#include "memdebug.h"
#endif

+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@
#endif

/* Make this the last #include */
#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
#include "memdebug.h"
#else
#include <stdlib.h>
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen)
#endif

/* The last #include file should be: */
#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
#include "memdebug.h"
#endif

+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
#include "hash.h"
#include "llist.h"

#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
/* this must be the last include file */
#include "memdebug.h"
#endif
Loading