updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_par_util / da_system.inc
blob1aa62d094ed7c35a39c8a0472340557f3e18bedb
1 subroutine da_system(cmd)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
9    character (len=*) , intent(in) :: cmd
11 #ifdef crayx1
12    call pxfsystem(cmd, len(cmd), ierr)
13 #else
14    call system(cmd)
15 #endif
17 end subroutine da_system