From 3e70da172e9227744a0b51baa5643d8a558c8143 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 26 Nov 2010 15:12:47 +0100 Subject: [PATCH] * removed unneccessary double definition of struct --- core/cib.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/cib.c b/core/cib.c index 252abbde47..b588fe671e 100644 --- a/core/cib.c +++ b/core/cib.c @@ -1,8 +1,4 @@ -typedef struct cib { - unsigned int read_count; - unsigned int write_count; - unsigned int complement; -} cib_t; +#include void cib_init(cib_t *cib, unsigned int size) { cib->read_count = 0;