source: LMDZ5/branches/IPSLCM5A2.1_ISO/libf/phyiso/zilch.F90 @ 3331

Last change on this file since 3331 was 3331, checked in by acozic, 6 years ago

Add modification for isotopes

  • Property svn:executable set to *
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.