Add Haiku detection to version alist

List was incomplete
Haiku OS was missing
Let the full list bloom
This commit is contained in:
Lassi Kortela 2019-10-14 14:46:24 +03:00
parent c33ba84796
commit 7efc38b4f7
1 changed files with 4 additions and 0 deletions

View File

@ -89,6 +89,10 @@ static value_t get_platform(void)
#ifdef __minix
userland = kernel = "minix";
#endif
#ifdef __HAIKU__
userland = "beos";
kernel = "haiku";
#endif
#ifdef __APPLE__
userland = kernel = "darwin";
#endif