Bringing in lib stuff (probably will need edits?)

This commit is contained in:
elijah-thomas774
2023-12-20 13:19:38 -05:00
parent 98daf44bb6
commit b4fd5011d1
9 changed files with 389 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef _RUNTIME_INIT_CPP_EXCEPTIONS_H
#define _RUNTIME_INIT_CPP_EXCEPTIONS_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
void __init_cpp_exceptions(void);
void __fini_cpp_exceptions(void);
#ifdef __cplusplus
}
#endif
#endif