Skip to content

Commit

Permalink
.x is a binary extension used for xcoff object files (MrC, etc)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksherlock committed Oct 11, 2022
1 parent 48d869c commit 3e2c02f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions toolbox/os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3e2c02f

Please sign in to comment.