mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
14 lines
369 B
FortranFixed
14 lines
369 B
FortranFixed
|
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 fsub(arg,res)
|
||
|
implicit none
|
||
|
integer*4 arg,res
|
||
|
res=arg*2
|
||
|
return
|
||
|
end
|