NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
xdopen.f
Go to the documentation of this file.
1C> @file
2C> @brief Dummy subroutine
3C> @author Dennis Keyser @date 1992-07-02
4
5C> This subroutine and the corresponding entries: "errset",
6C> "xdchek", "xdclos", "xdwrit", "xdread", and "xdform" are placed
7C> here to allow calling routines which reside on both the nas and
8C> the cray to compile. These subroutines perform nas-specific
9C> functions, but have no corresponding function on the cray. There-
10C> fore this subroutine is a "dummy". ft06 print is provided to
11C> alert the user that the call to the subroutine results in an
12C> immediate return with no function.
13C>
14C> ### Program History Log:
15C> Date | Programmer | Comment
16C> -----|------------|--------
17C> 1992-07-02 | Dennis Keyser (W/NMC22) | Initial.
18C>
19C> @author Dennis Keyser @date 1992-07-02
20 SUBROUTINE xdopen
21C
22 CHARACTER*6 ROUTIN(7)
23C
24 DATA routin/'XDOPEN','ERRSET','XDCHEK','XDCLOS','XDWRIT',
25 $ 'XDREAD','XDFORM'/
26C
27 icall = 1
28 GO TO 99
29 entry errset
30 icall = 2
31 GO TO 99
32 entry xdchek
33 icall = 3
34 GO TO 99
35 entry xdclos
36 icall = 4
37 GO TO 99
38 entry xdwrit
39 icall = 5
40 GO TO 99
41 entry xdread
42 icall = 6
43 GO TO 99
44 entry xdform
45 icall = 7
46 99 CONTINUE
47 print 1, routin(icall)
48 1 FORMAT(/2x,'%%%% SUBR. ',a6,' HAS NO FCN ON THE CRAY, BUT IS ',
49 $ 'PROVIDED TO ALLOW CODES TO COMPILE ON THE NAS & CRAY; RETURN ',
50 $ 'TO CALLING PGM'//)
51 RETURN
52 END
subroutine xdopen
This subroutine and the corresponding entries: "errset", "xdchek", "xdclos", "xdwrit",...
Definition xdopen.f:21