Skip to content

Commit

Permalink
fix what configure messes up
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Sep 1, 2016
1 parent 06619bd commit 90f328e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/city.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
// possible hash functions, by using SIMD instructions, or by
// compromising on hash quality.

#include "config.h"
// on windows, configure messes up size_t
#ifndef _WIN32
# include "config.h"
#endif

#include <city.h>
#include <string.h> // for memcpy and memset
Expand Down

0 comments on commit 90f328e

Please sign in to comment.