blob: 23d034f9142409a6fb8ace195b1421b9036ba8dc [file] [log] [blame]
#include <stdlib.h>
// The windows ninja generator is expecting an import library to get generated,
// but it doesn't if there are no exports.
#ifdef _MSC_VER
__declspec(dllexport) void foo() {}
#endif
void *malloc(size_t size) {
return (void*)0xdeadbeef;
}