diff options
Diffstat (limited to 'numpy/distutils/tests/f2py_ext/src/fib2.pyf')
-rw-r--r-- | numpy/distutils/tests/f2py_ext/src/fib2.pyf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/numpy/distutils/tests/f2py_ext/src/fib2.pyf b/numpy/distutils/tests/f2py_ext/src/fib2.pyf new file mode 100644 index 000000000..90a8cf00c --- /dev/null +++ b/numpy/distutils/tests/f2py_ext/src/fib2.pyf @@ -0,0 +1,9 @@ +! -*- f90 -*- +python module fib2 + interface + subroutine fib(a,n) + real*8 dimension(n),intent(out),depend(n) :: a + integer intent(in) :: n + end subroutine fib + end interface +end python module fib2 |