diff options
author | Bradley M. Froehle <brad.froehle@gmail.com> | 2012-07-24 15:59:53 -0700 |
---|---|---|
committer | Bradley M. Froehle <brad.froehle@gmail.com> | 2012-07-30 08:27:56 -0700 |
commit | e0457eb3e0bb146411dc9471127329c560155bb7 (patch) | |
tree | d73fafa13e73068e063f413fbd7b8f0467b85637 /numpy/f2py/cfuncs.py | |
parent | 26fed25e7f040564e7be4f82d7cd8a8fcc8fa287 (diff) | |
download | numpy-e0457eb3e0bb146411dc9471127329c560155bb7.tar.gz |
BUG: Exported f2py_size symbol prevents linking multiple f2py modules.
Diffstat (limited to 'numpy/f2py/cfuncs.py')
-rw-r--r-- | numpy/f2py/cfuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/cfuncs.py b/numpy/f2py/cfuncs.py index 4956e5740..72ee4f7a4 100644 --- a/numpy/f2py/cfuncs.py +++ b/numpy/f2py/cfuncs.py @@ -260,7 +260,7 @@ cppmacros['len..']="""\ """ needs['f2py_size']=['stdarg.h'] cfuncs['f2py_size']="""\ -int f2py_size(PyArrayObject* var, ...) +static int f2py_size(PyArrayObject* var, ...) { npy_int sz = 0; npy_int dim; |