~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to scipy/odr/odrpack/dlunoc.f

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
      subroutine dluno
 
2
     +   (lun, fn)
 
3
 
 
4
      integer lun
 
5
      character*(*) fn
 
6
 
 
7
      open(unit=lun, file=fn, status='new')
 
8
 
 
9
      return
 
10
 
 
11
      end
 
12
 
 
13
      subroutine dlunc
 
14
     +   (lun)
 
15
 
 
16
      integer lun
 
17
 
 
18
      close(unit=lun)
 
19
 
 
20
      return
 
21
 
 
22
      end