Go to the documentation of this file. 1 #ifndef sprockit_common_MALLOC_H 2 #define sprockit_common_MALLOC_H 6 #define SPROCKIT_FAKE_PTR ((void*)0x123) 11 #define large_new(type,size) ((type*)SPROCKIT_FAKE_PTR) 13 #define large_malloc(size) SPROCKIT_FAKE_PTR 18 #define large_new(type,size) new type[size]; 19 #define large_malloc(size) ::malloc(size) 21 #define large_malloc(size) malloc(size)