aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/memory.c')
-rw-r--r--util/memory.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/util/memory.c b/util/memory.c
index 712e20d26..db64ceeaf 100644
--- a/util/memory.c
+++ b/util/memory.c
@@ -37,7 +37,7 @@
#include "memory.h"
#include "util.h"
-/* FXIME: ugly hack. Need a prototype here bug can't include g10lib.h */
+/* FXIME: ugly hack. Need a prototype here but can't include g10lib.h */
int g10_private_is_secure( void *p );
@@ -642,4 +642,10 @@ FNAME(strdup)( const char *a FNAMEPRT )
return p;
}
+int
+m_is_secure( const void *a )
+{
+ return g10_private_is_secure(a);
+}
+