Delete giant commented-out mess mentioning U3_LIB

We have version control so we don't have to comment out things that
we've refactored into another function.

This is mainly to get rid of the false positive when I grep for U3_LIB.
This commit is contained in:
Raymond Pasco 2016-08-28 14:49:56 -04:00
parent 7291f72f59
commit b03519f64f

View File

@ -325,32 +325,6 @@ _sist_home()
//
if ( u3_Host.ops_u.imp_c ) {
u3_unix_ef_initial_into();
// snprintf(ful_c, 2048, "mkdir %s/%s",
// u3_Host.dir_c, u3_Host.ops_u.imp_c+1);
// printf("%s\r\n", ful_c);
// if ( 0 != system(ful_c) ) {
// uL(fprintf(uH, "could not %s\n", ful_c));
// u3_lo_bail();
// }
// snprintf(ful_c, 2048, "cp -r %s/zod %s/%s/in",
// U3_LIB, u3_Host.dir_c, u3_Host.ops_u.imp_c+1);
// printf("%s\r\n", ful_c);
// if ( 0 != system(ful_c) ) {
// uL(fprintf(uH, "could not %s\n", ful_c));
// u3_lo_bail();
// }
// snprintf(ful_c, 2048, "cp -r %s/zod %s/%s/out",
// U3_LIB, u3_Host.dir_c, u3_Host.ops_u.imp_c+1);
// printf("%s\r\n", ful_c);
// if ( 0 != system(ful_c) ) {
// uL(fprintf(uH, "could not %s\n", ful_c));
// u3_lo_bail();
// }
}
#endif
}