Revision 8fca345051c35ce7d76f4540d1dccfb9a3b9fa3f authored by Collin J. Sutton on 07 February 2014, 20:40:32 UTC, committed by Tom Quinn on 02 September 2016, 21:44:55 UTC
To regenerate Makefile, we use `config.status` (which re-runs `configure`
with all user-provided options).

Change-Id: Ia624505cf0f8dda5cdcfc6e28dc1813835d29993
1 parent 5362a7d
Raw File
keytype.h


#ifdef BIGKEYS
# if CMK_HAS_INT16
typedef CmiUInt16 KeyType;
# else
#error  "128-bit integer not supported."
# endif
#else
typedef CmiUInt8  KeyType;
#endif

back to top