replace __BEGIN_DECLS with extern "C"

This commit is contained in:
Valentin Churavy 2019-12-28 14:18:52 -05:00 committed by Daniel Micay
parent 7c5c768e2f
commit bee398f860

View File

@ -5,7 +5,9 @@
#include <malloc.h>
__BEGIN_DECLS
#ifdef __cplusplus
extern "C" {
#endif
#ifndef H_MALLOC_PREFIX
#define h_malloc malloc
@ -116,6 +118,8 @@ size_t h_malloc_object_size_fast(void *ptr);
// passed size matches the allocated size.
void h_free_sized(void *ptr, size_t expected_size);
__END_DECLS
#ifdef __cplusplus
}
#endif
#endif