summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortanjent@gmail.com <tanjent@gmail.com@77a7d1d3-4c08-bdc2-d393-d5859734b01a>2011-03-20 04:25:41 +0000
committertanjent@gmail.com <tanjent@gmail.com@77a7d1d3-4c08-bdc2-d393-d5859734b01a>2011-03-20 04:25:41 +0000
commit9808b178928a74852eff46dd572b8eaf443faa39 (patch)
tree8d3046b524a6ea456637ae9c9b42889728160b97
parentb379f34cd4dc54e1beb6f74a7ef054b76600d781 (diff)
downloadsrc-9808b178928a74852eff46dd572b8eaf443faa39.tar.gz
Remove leftover references to pstdint.h that break Ubuntu build
git-svn-id: http://smhasher.googlecode.com/svn/trunk@92 77a7d1d3-4c08-bdc2-d393-d5859734b01a
-rw-r--r--SuperFastHash.cpp2
-rw-r--r--lookup3.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/SuperFastHash.cpp b/SuperFastHash.cpp
index b7094d3..598c57c 100644
--- a/SuperFastHash.cpp
+++ b/SuperFastHash.cpp
@@ -1,4 +1,4 @@
-#include "pstdint.h"
+#include "Platform.h"
/* By Paul Hsieh (C) 2004, 2005. Covered under the Paul Hsieh derivative
license. See:
diff --git a/lookup3.cpp b/lookup3.cpp
index edf1c9a..60087f1 100644
--- a/lookup3.cpp
+++ b/lookup3.cpp
@@ -1,6 +1,6 @@
// lookup3 by Bob Jekins, code is public domain.
-#include "pstdint.h"
+#include "Platform.h"
#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))