summaryrefslogtreecommitdiff
path: root/accel-pppd/memdebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pppd/memdebug.h')
-rw-r--r--accel-pppd/memdebug.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/accel-pppd/memdebug.h b/accel-pppd/memdebug.h
index dc6b9ad1..98e87d06 100644
--- a/accel-pppd/memdebug.h
+++ b/accel-pppd/memdebug.h
@@ -22,6 +22,8 @@ void md_check(void *ptr);
#define _malloc(size) malloc(size)
#define _realloc(ptr, size) realloc(ptr, size)
#define _free(ptr) free(ptr)
+#define _strdup(str) strdup(str)
+#define _strndup(str, size) strndup(str, size)
#endif
#endif