summaryrefslogtreecommitdiff
path: root/lib/gnutls_mem.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-08 16:53:23 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-08 16:53:23 +0000
commitc9d1c6dd712606ff734b79f0c6bbdac15e055d11 (patch)
tree35bddcc5a6e7e480a63cd67f907a952830a492a0 /lib/gnutls_mem.c
parentfeea788493cbfc40b9b1364869d962be353b665f (diff)
downloadgnutls-c9d1c6dd712606ff734b79f0c6bbdac15e055d11.tar.gz
*** empty log message ***gnutls_0_6_0
Diffstat (limited to 'lib/gnutls_mem.c')
-rw-r--r--lib/gnutls_mem.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gnutls_mem.c b/lib/gnutls_mem.c
index 05d204fded..78840a2682 100644
--- a/lib/gnutls_mem.c
+++ b/lib/gnutls_mem.c
@@ -107,7 +107,9 @@ char* ret;
* The allocation function used is the one set by gnutls_global_set_mem_functions().
*
**/
-void* gnutls_malloc( size_t s);
+void* gnutls_malloc( size_t s)
+{
+}
/**
* gnutls_free - Returns a free() like function
@@ -118,7 +120,9 @@ void* gnutls_malloc( size_t s);
* The deallocation function used is the one set by gnutls_global_set_mem_functions().
*
**/
-void gnutls_free( void* ptr);
+void gnutls_free( void* ptr)
+{
+}
#endif