summaryrefslogtreecommitdiff
path: root/src/inc-msvc
diff options
context:
space:
mode:
authorDwayne C. Litzenberger <dlitz@dlitz.net>2008-11-16 11:46:18 -0500
committerDwayne C. Litzenberger <dlitz@dlitz.net>2008-11-16 11:46:18 -0500
commit2864b5c1c3299ad225dcd2f7657352940dd7ed6f (patch)
tree741f25ed29283bbf26ffdb33e50912f3e45f9251 /src/inc-msvc
parent1af3ed1dd855258efa4fc277cc07980b3e9a4126 (diff)
downloadpycrypto-2864b5c1c3299ad225dcd2f7657352940dd7ed6f.tar.gz
Add "signed" keyword to inc-msvc/stdint.h, just to be sure.
Diffstat (limited to 'src/inc-msvc')
-rw-r--r--src/inc-msvc/stdint.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inc-msvc/stdint.h b/src/inc-msvc/stdint.h
index e9266b7..a927132 100644
--- a/src/inc-msvc/stdint.h
+++ b/src/inc-msvc/stdint.h
@@ -27,10 +27,10 @@
#ifndef PYCRYPTO_MSVC_STDINT_H
#define PYCRYPTO_MSVC_STDINT_H
-typedef __int8 int8_t;
-typedef __int16 int16_t;
-typedef __int32 int32_t;
-typedef __int64 int64_t;
+typedef signed __int8 int8_t;
+typedef signed __int16 int16_t;
+typedef signed __int32 int32_t;
+typedef signed __int64 int64_t;
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;