*copyc fsc$condition_code_limits
?? NEWTITLE := 'FS System Condition Codes : ''FS'' 20 .. 29', EJECT ??
?? FMT (FORMAT := OFF) ??

  CONST
    fsc$min_system_ecc = fsc$min_ecc_validation + 20,
    fsc$max_system_ecc = fsc$min_system_ecc + 9,

    fse$system_error = fsc$min_system_ecc,
    {E An unrecoverable error internal to the fs system has occurred.}
    {  +P1 +P2 +P3 +P4 +P5 +P6 +P7 +P8 +P9}

    fse$temp_files_limit_reached = fsc$min_system_ecc + 1;
    {E The maximum number of temporary files allowed has been reached.  Some}
    { temporary files should be deleted before continuing.}

?? FMT (FORMAT := ON) ??
?? OLDTITLE ??

