aboutsummaryrefslogtreecommitdiff
path: root/lib/base64.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-10-09 11:12:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-10-09 11:12:34 +0000
commit0f8facb49b45a711fa7832c68260a5b45b362922 (patch)
tree877fa9fabaeb601098cdbb04e48947e34100d8a4 /lib/base64.c
parentd49d05bce603313d71f1a2b9904c74ca7b368703 (diff)
added memory debugging include file
Diffstat (limited to 'lib/base64.c')
-rw-r--r--lib/base64.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/base64.c b/lib/base64.c
index c67650eb3..16423e6d2 100644
--- a/lib/base64.c
+++ b/lib/base64.c
@@ -38,6 +38,11 @@
#include <string.h>
#include "base64.h"
+/* The last #include file should be: */
+#ifdef MALLOCDEBUG
+#include "memdebug.h"
+#endif
+
static char base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
static int pos(char c)