summaryrefslogtreecommitdiff
path: root/bcrypt/bcrypt_python.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-07-28 09:53:48 +1000
committerDamien Miller <djm@mindrot.org>2013-07-28 09:53:48 +1000
commitbae2b6181523d39d9313f9b996199e618684ed63 (patch)
treec59d3e74c8ef7699d9868c68a14d7702edd80cec /bcrypt/bcrypt_python.c
parente72cf0d46a6afb7b3a38d629ee5968c5e5cf2f3d (diff)
downloadpy-bcrypt-bae2b6181523d39d9313f9b996199e618684ed63.tar.gz
issue#9: use C99 fixed integer types if available
Diffstat (limited to 'bcrypt/bcrypt_python.c')
-rw-r--r--bcrypt/bcrypt_python.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/bcrypt/bcrypt_python.c b/bcrypt/bcrypt_python.c
index a41352e..5450b48 100644
--- a/bcrypt/bcrypt_python.c
+++ b/bcrypt/bcrypt_python.c
@@ -24,9 +24,6 @@ typedef int Py_ssize_t;
#define PYBCRYPT_VERSION "0.4"
#if defined(_WIN32)
-typedef unsigned __int8 u_int8_t;
-typedef unsigned __int16 u_int16_t;
-typedef unsigned __int32 u_int32_t;
#define bzero(s,n) memset(s, '\0', n)
#endif