[pypy-commit] pypy win64-stage1: small cleanup
ctismer
noreply at buildbot.pypy.org
Sat Mar 24 18:01:16 CET 2012
Author: Christian Tismer <tismer at stackless.com>
Branch: win64-stage1
Changeset: r53965:6aee56b07e15
Date: 2012-03-24 18:00 +0100
http://bitbucket.org/pypy/pypy/changeset/6aee56b07e15/
Log: small cleanup
diff --git a/pypy/translator/tool/cbuild.py b/pypy/translator/tool/cbuild.py
--- a/pypy/translator/tool/cbuild.py
+++ b/pypy/translator/tool/cbuild.py
@@ -321,8 +321,8 @@
/* Windows: winsock/winsock2 mess */
#define WIN32_LEAN_AND_MEAN
#ifdef _WIN64
- typedef long long Signed;
- typedef unsigned long long Unsigned;
+ typedef __int64 Signed;
+ typedef unsigned __int64 Unsigned;
# define SIGNED_MIN LLONG_MIN
#else
typedef long Signed;
More information about the pypy-commit
mailing list