annotate libcruft/slatec-fn/xdgamit.f @ 14775:4e86b0fa6c2d

Update contributers. * doc/interpreter/contributors.in: Add John Hunt.
author Ben Abbott <bpabbott@mac.com>
date Fri, 15 Jun 2012 21:15:23 -0400
parents c0532bbaefd7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3278
9c9f0c035309 [project @ 1999-10-12 06:03:49 by jwe]
jwe
parents:
diff changeset
1 subroutine xdgamit (a, x, result)
4079
c0532bbaefd7 [project @ 2002-09-30 19:08:09 by jwe]
jwe
parents: 3278
diff changeset
2 external dgamit
3278
9c9f0c035309 [project @ 1999-10-12 06:03:49 by jwe]
jwe
parents:
diff changeset
3 double precision a, x, result, dgamit
9c9f0c035309 [project @ 1999-10-12 06:03:49 by jwe]
jwe
parents:
diff changeset
4 result = dgamit (a, x)
9c9f0c035309 [project @ 1999-10-12 06:03:49 by jwe]
jwe
parents:
diff changeset
5 return
9c9f0c035309 [project @ 1999-10-12 06:03:49 by jwe]
jwe
parents:
diff changeset
6 end