home *** CD-ROM | disk | FTP | other *** search
- /* recspace.c -- free space initialization module for transcribe program */
-
- /* this file defines the maximum allocatable storage in bytes */
- /* the number must be determined emperically because it depends upon */
- /* the amount of storage that must be left around for io etc. */
-
- /* this should leave about 2KB free */
- #define MAXSPACE 55000
-
- /* export the free space counter */
- long space = MAXSPACE;
-