]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/operator-new-dylib/foo.cxx
dyld-360.19.tar.gz
[apple/dyld.git] / unit-tests / test-cases / operator-new-dylib / foo.cxx
1
2 #include <stdlib.h>
3 #include <new>
4
5
6
7
8
9 char* foo()
10 {
11 return new char[24];
12 }
13