From: Mark Wooding Date: Tue, 26 May 2015 15:00:32 +0000 (+0100) Subject: catacomb-python.h: Promote `util' to the head of the list. X-Git-Url: https://git.distorted.org.uk/~mdw/pyke/commitdiff_plain/dfe0a89785e70fdb3c75196b54ae05f006a35ca3 catacomb-python.h: Promote `util' to the head of the list. If anything needs to prepare for other modules, it's common utilities. --- diff --git a/catacomb-python.h b/catacomb-python.h index 08c8e66..bf2a840 100644 --- a/catacomb-python.h +++ b/catacomb-python.h @@ -188,11 +188,11 @@ { #name, ty, offsetof(MEMBERSTRUCT, name), f, doc }, #define MODULES(_) \ + _(util) \ _(bytestring) _(buffer) \ _(rand) _(algorithms) _(pubkey) _(pgen) \ _(mp) _(field) _(ec) _(group) \ - _(passphrase) _(share) _(key) \ - _(util) + _(passphrase) _(share) _(key) #define DOMODINIT(m) m##_pyinit(); #define DOMODINSERT(m) m##_pyinsert(mod); #define INIT_MODULES do { MODULES(DOMODINIT) } while (0)