Skip to content

Commit

Permalink
Update os_type_to_string function to include OS_TYPE_MACOSX and r…
Browse files Browse the repository at this point in the history
…emove `OS_TYPE_FREEBSD`
  • Loading branch information
Adversing committed Jan 22, 2025
1 parent a1ca641 commit 4c2d47c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/compiler/compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -1625,13 +1625,12 @@ const char *os_type_to_string(OsType os)
case OS_TYPE_ANANAS: return "ANANAS";
case OS_TYPE_CLOUD_ABI: return "CLOUD_ABI";
case OS_TYPE_DRAGON_FLY: return "DRAGON_FLY";
case OS_TYPE_FREEBSD: return "FREEBSD";
case OS_TYPE_FUCHSIA: return "FUCHSIA";
case OS_TYPE_IOS: return "IOS";
case OS_TYPE_KFREEBSD: return "KFREEBSD";
case OS_TYPE_LINUX: return "LINUX";
case OS_TYPE_PS3: return "PS3";
case OS_TYPE_MACOS: return "MACOS";
case OS_TYPE_MACOSX: return "MACOSX";
case OS_TYPE_NETBSD: return "NETBSD";
case OS_TYPE_OPENBSD: return "OPENBSD";
case OS_TYPE_SOLARIS: return "SOLARIS";
Expand Down

0 comments on commit 4c2d47c

Please sign in to comment.