Make storage.h C++ safe

Former-commit-id: cc98d10fc695dd61b1ef5d96ac2866a877111e50
This commit is contained in:
John Sully 2019-03-09 13:42:08 -05:00
parent 6ef744f242
commit 3c4a69fe36

View File

@ -3,6 +3,10 @@
#define OBJ_ENCODING_EMBSTR_SIZE_LIMIT 44 // Note: also defined in object.c - should always match #define OBJ_ENCODING_EMBSTR_SIZE_LIMIT 44 // Note: also defined in object.c - should always match
#ifdef __cplusplus
extern "C" {
#endif
enum MALLOC_CLASS enum MALLOC_CLASS
{ {
MALLOC_LOCAL, MALLOC_LOCAL,
@ -22,4 +26,8 @@ void sfree_objembstr(struct redisObject *obj);
struct redisObject *salloc_obj(); struct redisObject *salloc_obj();
void sfree_obj(struct redisObject *obj); void sfree_obj(struct redisObject *obj);
#ifdef __cplusplus
}
#endif
#endif #endif