summaryrefslogtreecommitdiff
path: root/source/include/smb_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/smb_macros.h')
-rw-r--r--source/include/smb_macros.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/include/smb_macros.h b/source/include/smb_macros.h
index 7c715884b01..d26433359be 100644
--- a/source/include/smb_macros.h
+++ b/source/include/smb_macros.h
@@ -295,7 +295,6 @@ copy an IP address from one buffer to another
#if defined(PARANOID_MALLOC_CHECKER)
#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem_((ps),sizeof(type),(count))
-#define PRS_ALLOC_MEM_VOID(ps, size) prs_alloc_mem_((ps),(size),1)
/* Get medieval on our ass about malloc.... */
@@ -334,7 +333,6 @@ copy an IP address from one buffer to another
#else
#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem((ps),sizeof(type),(count))
-#define PRS_ALLOC_MEM_VOID(ps, size) prs_alloc_mem((ps),(size),1)
/* Regular malloc code. */