source: LMDZ6/trunk/libf/phylmdiso/zilch.F90 @ 3927

Last change on this file since 3927 was 3927, checked in by Laurent Fairhead, 3 years ago

Initial import of the physics wih isotopes from Camille Risi
CR

File size: 192 bytes
Line 
1
2! $Header$
3
4SUBROUTINE zilch(x, m)
5
6  ! Zero the real array x dimensioned m.
7
8  IMPLICIT NONE
9
10  INTEGER m, i
11  REAL x(m)
12
13  DO i = 1, m
14    x(i) = 0.0
15  END DO
16  RETURN
17END SUBROUTINE zilch
Note: See TracBrowser for help on using the repository browser.