Skip to content

Commit

Permalink
Add missing header files in siphash.c, fix MaskRay#301
Browse files Browse the repository at this point in the history
  • Loading branch information
MaskRay committed Jan 16, 2018
1 parent 98fb9ee commit 5ff7d16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion third_party/siphash.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#pragma once

#include <stddef.h>
#include <stdint.h>

int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k,
uint8_t *out, const size_t outlen);
uint8_t *out, const size_t outlen);

0 comments on commit 5ff7d16

Please sign in to comment.