mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
17 lines
314 B
C
17 lines
314 B
C
//~ 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"
|