diff options
Diffstat (limited to 'lib/dis.h')
-rw-r--r-- | lib/dis.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,8 +1,10 @@ +#pragma once #include <stdbool.h> #define UNUSED __attribute__((unused)) #define INLINE inline __attribute__((always_inline)) +#define NOINLINE inline __attribute__((noinline)) struct bitslice_run { int inpos, outpos, len; |