From cc231e4ab001c59064c6ac5a1adbb749cfa51e90 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Wed, 17 Jul 2013 00:40:48 -0400 Subject: [PATCH] ck_elide: No need to expose ck_elide_stat. --- include/ck_elide.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/ck_elide.h b/include/ck_elide.h index 80d0383..a63fd5c 100644 --- a/include/ck_elide.h +++ b/include/ck_elide.h @@ -64,11 +64,12 @@ struct ck_elide_stat { unsigned int n_elide; unsigned short skip; }; +typedef struct ck_elide_stat ck_elide_stat_t; #define CK_ELIDE_STAT_INITIALIZER { 0, 0, 0 } static inline void -ck_elide_stat_init(struct ck_elide_stat *st) +ck_elide_stat_init(ck_elide_stat_t *st) { memset(st, 0, sizeof(*st));