fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Setting the Default Integer Size (/4I2, /4I4)
                                             Up Contents Index Back
─────Setting the Default Integer Size (/4I2, /4I4)──────────────────────────
 
     The /4I options set the number of bytes to allocate for INTEGER
     and LOGICAL variables.
 
     Syntax: /4I{2 | 4}
 
     The default allocation is 4 bytes. The /4I option applies to the
     remainder of the command line or until another /4I option
     appears.
 
     Example
 
          FL /4I2 TESTPROG.FOR
 
     This example allocates 2 bytes of memory for INTEGER and
     LOGICAL variables when compiling and linking a program named
     TESTPROG.FOR.
 
     See Also: $STORAGE
                                    -♦-