mirror of
https://github.com/Icinga/icinga2.git
synced 2025-12-18 19:25:00 +01:00
17 lines
191 B
C++
17 lines
191 B
C++
/* Icinga 2 | (c) 2023 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include <cstddef>
|
|
|
|
extern "C" void* malloc(size_t)
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
extern "C" void free(void*)
|
|
{
|
|
}
|
|
|
|
#endif /* _WIN32 */
|