make it build (and get wibo update from ph)

This commit is contained in:
Yanis002
2025-02-13 23:19:43 +01:00
parent 27d0fa2662
commit 4f7cefd225
8 changed files with 91 additions and 6 deletions
@@ -0,0 +1,10 @@
#pragma once
typedef struct DestructorChain {
/* 0 */ struct DestructorChain *next;
/* 4 */ void *destructor;
/* 8 */ void *object;
/* c */
} DestructorChain;
void *__register_global_object(void *object, void *destructor, DestructorChain *link);
+10
View File
@@ -0,0 +1,10 @@
#pragma once
namespace std {
template <class T> class vector {
public:
T *elements;
int size;
int capacity;
};
} // namespace std