File: sort.f90

package info (click to toggle)
wsjtx 2.7.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 70,440 kB
  • sloc: cpp: 75,379; f90: 46,460; python: 27,241; ansic: 13,367; fortran: 2,382; makefile: 197; sh: 133
file content (6 lines) | stat: -rwxr-xr-x 82 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
subroutine sort(n,arr)

  call ssort(arr,tmp,n,1)
  
  return
end subroutine sort