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

sync: use #insert for atomic.h, so that bootstrapping can be simplified

This commit is contained in:
Delyan Angelov 2022-04-19 20:06:20 +03:00
parent 006df58451
commit 9646e4b9d8
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -48,7 +48,12 @@ $if linux {
} }
} }
#include <atomic.h> $if windows {
#insert "@VEXEROOT/thirdparty/stdatomic/win/atomic.h"
} $else {
#insert "@VEXEROOT/thirdparty/stdatomic/nix/atomic.h"
}
// The following functions are actually generic in C // The following functions are actually generic in C
fn C.atomic_load_ptr(voidptr) voidptr fn C.atomic_load_ptr(voidptr) voidptr
fn C.atomic_store_ptr(voidptr, voidptr) fn C.atomic_store_ptr(voidptr, voidptr)