aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac/arch_utilities.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/mac/arch_utilities.cc')
-rw-r--r--src/common/mac/arch_utilities.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/common/mac/arch_utilities.cc b/src/common/mac/arch_utilities.cc
index cdc1dfa5..febf8a22 100644
--- a/src/common/mac/arch_utilities.cc
+++ b/src/common/mac/arch_utilities.cc
@@ -210,22 +210,4 @@ const NXArchInfo *NXGetArchInfoFromCpuType(cpu_type_t cputype,
}
return candidate;
}
-
-struct fat_arch *NXFindBestFatArch(cpu_type_t cputype,
- cpu_subtype_t cpusubtype,
- struct fat_arch *fat_archs,
- uint32_t nfat_archs) {
- struct fat_arch *candidate = NULL;
- for (uint32_t f = 0; f < nfat_archs; ++f) {
- if (fat_archs[f].cputype == cputype) {
- if (fat_archs[f].cpusubtype == cpusubtype) {
- return &fat_archs[f];
- }
- if (!candidate) {
- candidate = &fat_archs[f];
- }
- }
- }
- return candidate;
-}
#endif // !__APPLE__