summaryrefslogtreecommitdiff
path: root/sets.h
diff options
context:
space:
mode:
Diffstat (limited to 'sets.h')
-rw-r--r--sets.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sets.h b/sets.h
index 44114d1..2a2e8b1 100644
--- a/sets.h
+++ b/sets.h
@@ -12,12 +12,10 @@
#include <stdbool.h>
#ifdef BITSETS
-struct set{
+typedef struct {
int N;
unsigned long long* tab;
-};
-
-typedef struct set set;
+} set;
#endif
#ifdef LINKEDLISTS