aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/include/skalibs/gol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/skalibs/gol.h b/src/include/skalibs/gol.h
index 8a9d94c..746ed97 100644
--- a/src/include/skalibs/gol.h
+++ b/src/include/skalibs/gol.h
@@ -12,18 +12,18 @@
typedef struct gol_bool_s gol_bool, *gol_bool_ref ;
struct gol_bool_s
{
+ uint64_t mask ;
char const *lo ;
uint8_t so : 7 ;
uint8_t set : 1 ;
- uint64_t mask ;
} ;
typedef struct gol_arg_s gol_arg, *gol_arg_ref ;
struct gol_arg_s
{
char const *lo ;
- uint8_t so : 7 ;
unsigned int i ;
+ uint8_t so : 7 ;
} ;
extern int gol (char const *const *, unsigned int, gol_bool const *, unsigned int, gol_arg const *a, unsigned int, uint64_t *, char const **, int *) ;