diff options
| author | Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com> | 2022-07-28 11:57:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-28 11:57:13 +0200 |
| commit | 0eeb8e142c84d3e48cca790b5499aa009ff3e245 (patch) | |
| tree | ad32dd50f65363c8bd7b27668d6441a2362429b7 /siphash.c | |
| parent | Merge pull request #41 from noocsharp/master (diff) | |
| parent | Merge branch 'master' into rename-debug-symbol (diff) | |
| download | siphash-0eeb8e142c84d3e48cca790b5499aa009ff3e245.tar.gz siphash-0eeb8e142c84d3e48cca790b5499aa009ff3e245.tar.xz | |
Merge pull request #39 from snej/rename-debug-symbol
Rename `DEBUG` to `DEBUG_SIPHASH` – fixing the makefile upstream
Diffstat (limited to '')
| -rw-r--r-- | siphash.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -64,8 +64,9 @@ v2 = ROTL(v2, 32); \ } while (0) -#ifdef DEBUG +#ifdef DEBUG_SIPHASH #include <stdio.h> + #define TRACE \ do { \ printf("(%3zu) v0 %016" PRIx64 "\n", inlen, v0); \ |
