Initial upload

This commit is contained in:
ryanfleury
2021-01-20 11:19:34 -07:00
commit 90fc1de709
30 changed files with 5769 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
//~ Metadesk Library
// TODO(allen): Test including this after <Windows.h>
// NOTE(allen): Include the OS specific functions
#if MD_OS_WINDOWS
# include "md_win32.c"
#elif MD_OS_LINUX
# include "md_posix.c"
#else
# error No default implementation for this OS
#endif
#include "md_malloc.c"
#include "md_impl.c"