aboutsummaryrefslogtreecommitdiffstats
path: root/src/visibility.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/visibility.c')
-rw-r--r--src/visibility.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/visibility.c b/src/visibility.c
index 0a058d2..5ecef45 100644
--- a/src/visibility.c
+++ b/src/visibility.c
@@ -817,6 +817,13 @@ gpgrt_free (void *a)
_gpgrt_free (a);
}
+void
+gpgrt_wipememory (void *ptr, size_t len)
+{
+ if (ptr && len)
+ _gpgrt_wipememory (ptr, len);
+}
+
char *
gpgrt_getenv (const char *name)
{