diff options
Diffstat (limited to 'swap.c')
-rw-r--r-- | swap.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,9 +2,12 @@ #include <stdint.h> #include "common.h" +#include "counts.h" void swap(char *a, char *b, size_t width) { + counts[CURRENT].swap++; + #ifdef __GNUC__ typedef uint32_t __attribute__((__may_alias__)) u32; |