* siphash.h: check configure macros before include newer headers.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2012-11-09 15:34:31 +00:00
parent 36ca3781bd
commit 125ca30ca2
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,9 @@
#ifndef SIPHASH_H
#define SIPHASH_H 1
#include <stdlib.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif