From 8eb544146eae17ffba36474b6b3c543c5c8b97b0 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 27 Jul 2021 20:27:58 +0300 Subject: [PATCH] os: fix building V on Haiku --- vlib/os/os_nix.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/os_nix.c.v b/vlib/os/os_nix.c.v index b30eab640f..cc3869dcee 100644 --- a/vlib/os/os_nix.c.v +++ b/vlib/os/os_nix.c.v @@ -8,7 +8,7 @@ import strings #include #include #include -$if !solaris { +$if !solaris && !haiku { #include }