home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fchek284.zip / test / unixincluded.f < prev    next >
Text File  |  1994-11-06  |  243b  |  17 lines

  1. # 1 "unixinclude.f"
  2.       integer n
  3.  
  4. # 1 "./unixdefs.h"
  5.       integer x
  6.       logical a
  7.       common n
  8. # 3 "unixinclude.f"
  9.       call foo(x)
  10.       a = x .eq. n
  11.       end
  12.       subroutine foo(m)
  13.       common n
  14.       n = 1
  15.       m = 2
  16.       end
  17.