add submitted by eof tag

This commit is contained in:
Todd A Ouska
2011-04-15 16:48:13 -07:00
parent 651b793791
commit 33e5d2f04a
5 changed files with 8 additions and 1 deletions

View File

@@ -135,7 +135,6 @@ enum {
extern void XFREE(void *p, void* heap, int type);
#elif !defined(MICRIUM_MALLOC)
/* default C runtime, can install different routines at runtime */
#define USE_CYASSL_MEMORY
#include <cyassl_memory.h>
#define XMALLOC(s, h, t) CyaSSL_Malloc((s))
#define XFREE(p, h, t) {void* xp = (p); if((xp)) CyaSSL_Free((xp));}