summaryrefslogtreecommitdiff
path: root/doc/source/f2py/code/fib2.pyf
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/f2py/code/fib2.pyf')
-rw-r--r--doc/source/f2py/code/fib2.pyf9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/source/f2py/code/fib2.pyf b/doc/source/f2py/code/fib2.pyf
new file mode 100644
index 000000000..4a5ae29f1
--- /dev/null
+++ b/doc/source/f2py/code/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