summaryrefslogtreecommitdiff
path: root/tests/f77demo/foof2.f
blob: e1f1550651c25fc51b551c1478412779bacc6d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
C 
C This program is free software; you can redistribute it and/or
C modify it under the terms of the GNU General Public License
C as published by the Free Software Foundation; either version 2
C of the License, or (at your option) any later version.
C 

      subroutine fsubf(arg,res)
      implicit none
      integer*4 arg,res
      write(*,*) 'fsubf called'
      res=arg*2
      return
      end