aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1999-12-31 11:44:29 +0000
committerWerner Koch <[email protected]>1999-12-31 11:44:29 +0000
commited0b0e09d3eb529dc83fab4f24d4fc3abe649bd2 (patch)
treeacdf31e4ef6ec6940169de6bd2a557451b8b73f9 /util/memory.c
parentSee ChangeLog: Thu Dec 9 17:22:27 CET 1999 Werner Koch (diff)
downloadgnupg-ed0b0e09d3eb529dc83fab4f24d4fc3abe649bd2.tar.gz
gnupg-ed0b0e09d3eb529dc83fab4f24d4fc3abe649bd2.zip
See ChangeLog: Fri Dec 31 12:48:31 CET 1999 Werner Koch
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);
+}
+