/** Copyright 2025, Haiku, Inc. All rights reserved.* Distributed under the terms of the MIT License.*/#include <SupportDefs.h>#ifdef __HAIKU_BEOS_COMPATIBLEstruct mstats {size_t bytes_total;size_t chunks_used;size_t bytes_used;size_t chunks_free;size_t bytes_free;};struct mstatsmstats(){struct mstats stats = {};return stats;}#endif