summaryrefslogtreecommitdiff
path: root/os/pool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'os/pool.cpp')
-rw-r--r--os/pool.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/os/pool.cpp b/os/pool.cpp
new file mode 100644
index 0000000..f059b05
--- /dev/null
+++ b/os/pool.cpp
@@ -0,0 +1,5 @@
+#include "pool.h"
+
+void* operator new(unsigned int, char* buf) {
+ return (void*)buf;
+}