[lib][pool] Fix cplusplus guard left out when refactoring pool lib

This commit is contained in:
Christopher Anderson
2015-09-09 09:54:07 -07:00
parent 230c1ba2b1
commit 6846ab3e89

View File

@@ -46,11 +46,12 @@
*/
#pragma once
extern "C" {
#include <compiler.h>
#include <stddef.h>
#include <stdint.h>
__BEGIN_CDECLS
/**
* Pool type.
*/
@@ -147,4 +148,4 @@ void pool_free(pool_t * pool, void * object);
#define TYPED_POOL_FREE(type, pool, object) \
pool_free(pool, object)
} // extern "C"
__END_CDECLS