Header only file doesn't need c++ guard

This commit is contained in:
Nils O. Selåsdal
2026-04-20 23:38:21 +02:00
parent d85735add9
commit 24d9994c87
-7
View File
@@ -4,9 +4,6 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <assert.h> #include <assert.h>
#ifdef __cplusplus
extern "C" {
#endif
/** @file /** @file
* Static arena allocator. * Static arena allocator.
@@ -177,8 +174,4 @@ static inline size_t uc_sar_available(const UCSArena *arena)
return uc_sar_size(arena) - uc_sar_used(arena); return uc_sar_size(arena) - uc_sar_used(arena);
} }
#ifdef __cplusplus
}
#endif
#endif #endif