Add magimail (crashmail2 fork) to repo

This commit is contained in:
Andrew Pamment
2017-03-18 23:04:38 +10:00
parent 8fad85affc
commit 807574ccf4
98 changed files with 23583 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
#ifndef OS_OSMEM_H
#define OS_OSMEM_H
#include "shared/types.h"
void *osAlloc(uint32_t size);
void *osAllocCleared(uint32_t size);
void osFree(void *buf);
#endif