]> git.saurik.com Git - apple/dyld.git/blob - testing/test-cases/weak-coalesce-inserted-dylibs.dtest/bar.cpp
dyld-750.6.tar.gz
[apple/dyld.git] / testing / test-cases / weak-coalesce-inserted-dylibs.dtest / bar.cpp
1
2 #include <stdlib.h>
3
4 void* operator new(size_t size)
5 {
6 return malloc(size);
7 }
8
9 void operator delete(void* ptr)
10 {
11 free(ptr);
12 }
13