summaryrefslogtreecommitdiff
path: root/msgpack/pack.h
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-22 19:49:02 +0900
committerNaoki INADA <inada-n@eagle>2009-06-22 19:49:02 +0900
commit8e850dca4ae7481df612e12fd3bf6391f488decf (patch)
tree77cb06e0a3402a79f80598e19839ccc9f2f0dee1 /msgpack/pack.h
parentd44108c70977c859a96caa8847ec2514f2313fdd (diff)
downloadmsgpack-python-8e850dca4ae7481df612e12fd3bf6391f488decf.tar.gz
Fix compile error.
Diffstat (limited to 'msgpack/pack.h')
-rw-r--r--msgpack/pack.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/msgpack/pack.h b/msgpack/pack.h
index f3935fb..544950b 100644
--- a/msgpack/pack.h
+++ b/msgpack/pack.h
@@ -15,18 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#if _MSC_VER
-typedef signed char uint8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t;
-typedef unsigned short uint16_t;
-typedef int int32_t;
-typedef unsigned int uint32_t;
-typedef long long int64_t;
-typedef unsigned long long uint64_t;
-#else
-#include <stdint.h>
-#endif
#include <stddef.h>
#include <stdlib.h>