reinit repo after broken git
This commit is contained in:
41
src/core/core.c
Normal file
41
src/core/core.c
Normal file
@@ -0,0 +1,41 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
#if PLATFORM_WINDOWS
|
||||
#define NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#if PLATFORM_ADDRESS_SANITIZER
|
||||
#include <sanitizer/asan_interface.h>
|
||||
#endif
|
||||
|
||||
#if !defined(ASAN_POISON_MEMORY_REGION)
|
||||
#define MA_ASAN_POISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size))
|
||||
#define MA_ASAN_UNPOISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size))
|
||||
#else
|
||||
#define MA_ASAN_POISON_MEMORY_REGION(addr, size) ASAN_POISON_MEMORY_REGION(addr, size)
|
||||
#define MA_ASAN_UNPOISON_MEMORY_REGION(addr, size) ASAN_UNPOISON_MEMORY_REGION(addr, size)
|
||||
#endif
|
||||
|
||||
#if PLATFORM_CL
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#include "intrinsics.c"
|
||||
#include "unicode.c"
|
||||
#include "mathx.c"
|
||||
#include "mathx.gen.c"
|
||||
#include "arena.c"
|
||||
|
||||
#define STB_SPRINTF_IMPLEMENTATION
|
||||
#include "stb_sprintf.h"
|
||||
#include "string.c"
|
||||
#include "string8.c"
|
||||
#include "scratch.c"
|
||||
#include "log.c"
|
||||
#include "lexer.c"
|
||||
#include "type_info.c"
|
||||
Reference in New Issue
Block a user