[pypy-commit] pypy default: add RPY_EXTERN to function declarations via h file

mattip noreply at buildbot.pypy.org
Sun Nov 9 21:41:50 CET 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r74421:451f9a4e1dd6
Date: 2014-11-09 14:41 -0600
http://bitbucket.org/pypy/pypy/changeset/451f9a4e1dd6/

Log:	add RPY_EXTERN to function declarations via h file

diff --git a/rpython/translator/c/src/ll_math.c b/rpython/translator/c/src/ll_math.c
--- a/rpython/translator/c/src/ll_math.c
+++ b/rpython/translator/c/src/ll_math.c
@@ -10,6 +10,8 @@
 #include <math.h>
 #endif
 
+#include "src/ll_math.h"
+
 #ifdef _MSC_VER
 #define PyPy_IS_NAN _isnan
 #define PyPy_IS_INFINITY(X) (!_finite(X) && !_isnan(X))


More information about the pypy-commit mailing list