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