aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-05-18 13:21:27 +0000
committerLaurent Bercot <ska@appnovation.com>2025-05-18 13:21:27 +0000
commitb708eef95c98ba9215f5eef2c2911e4f87ebc7a5 (patch)
tree3db1f8f7426f80daeac069d6614861b3d14b9d86 /src/include
parente72ef18cf335af9eaeced18a2056bb8371910352 (diff)
downloadskalibs-b708eef95c98ba9215f5eef2c2911e4f87ebc7a5.tar.gz
Reorder gol struct members
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/include')
-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 *) ;