1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v: add support for _qnx.c.v overriding _default.c.v (#17611)

This commit is contained in:
Thomas Mangin
2023-03-12 17:48:36 +00:00
committed by GitHub
parent 3197ec1a41
commit 0bd094292f
3 changed files with 8 additions and 0 deletions

View File

@@ -386,6 +386,9 @@ pub fn user_os() string {
$if solaris {
return 'solaris'
}
$if qnx {
return 'qnx'
}
$if haiku {
return 'haiku'
}