diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-04-29 15:33:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-29 15:33:46 +0200 |
commit | 63b5378a617437859da1e7ab5553d36eb83bdd44 (patch) | |
tree | f131363df0d8977dce6c62507aad4f654ae3c9a6 | |
parent | 0dc4d8e42e44224b00a028b467749eede8f08a6e (diff) | |
download | curl-63b5378a617437859da1e7ab5553d36eb83bdd44.tar.gz |
memdebug.h: remove inclusion of other headers
Mostly because they're not needed, because memdebug.h is always included
last of all headers so the others already included the correct ones.
But also, starting now we don't want this to accidentally include any
system headers, as the header included _before_ this header may add
defines and other fun stuff that we won't want used in system includes.
-rw-r--r-- | lib/memdebug.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/memdebug.h b/lib/memdebug.h index a443a42a3..835dab38c 100644 --- a/lib/memdebug.h +++ b/lib/memdebug.h @@ -28,10 +28,6 @@ * as well as the library. Do not mix with library internals! */ -#include "curl_setup.h" - -#include <curl/curl.h> - #define CURL_MT_LOGFNAME_BUFSIZE 512 #define logfile curl_debuglogfile |