CREATE - open a temp file or terminal.
(obsolete - use OPEN) 
Usage:
CALL CREATE(lgu, isize, mode, istat)
Where:
    - lgu 
 
    - (integer expression) is the usual F77 unit reference. 
 
    - isize 
 
    - (integer expression) is the size, in words, of the
        desired file and must be present (not used if mode = 2). 
 
    - mode 
 
    - is an integer expression. 
            - 0 
 
            - open a sequential file. 
 
            - 1 
 
            - open a random file. 
 
            - 2 
 
            - open the terminal. 
 
        
     
    - istat 
 
    - is an integer variable where the status is returned. 
            - 0 
 
            - success 
 
            - 1 
 
            - invalid mode 
 
            - 2 
 
            - already open 
 
            - 3 
 
            - AFT full 
 
            - 4 
 
            - no temp space available 
 
            - 5 
 
            - duplicate name in AFT 
 
            - 6 
 
            - no PAT space available 
 
            - 7 
 
            - illegal device specified (should not occur). 
 
        
     
Description:
CREATE creates an opens a temp file, or opens the terminal.
This subroutine is obsolete. Use the F77 OPEN statement instead.
Copyright © 1996, Thinkage Ltd.