.x is a binary extension used for xcoff object files (MrC, etc)

This commit is contained in:
Kelvin Sherlock 2022-10-10 21:07:13 -04:00
parent 48d869c6e8
commit 3e2c02f796
1 changed files with 5 additions and 0 deletions

View File

@ -288,6 +288,11 @@ namespace OS
if (ext == "sym")
return true;
break;
case 'x':
// xcoff object file
if (ext == "x")
return true;
break;
}
return false;