Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7667 → Rev 7668

/programs/develop/cmm/main.cpp
315,7 → 315,14
printf("Bad input file extension '%s'.",rawext);
exit(e_badinputfilename);
}
// Add dirname of the input file to include path.
char *slash_idx = strrchr((char*)rawfilename, DIV_FOLD);
if (slash_idx) {
*slash_idx = '\0';
IncludePath((char*)rawfilename);
*slash_idx = DIV_FOLD;
}
}
 
void compile()
{