From b5f9c95ce77ca03ddc7d11cfc659a46598d9a69f Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 26 Jun 2020 20:33:47 +0100 Subject: [PATCH] Remove `foreign import` for `-vet` --- core/sync/sync_windows.odin | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/sync/sync_windows.odin b/core/sync/sync_windows.odin index 18866e9ae..f21810598 100644 --- a/core/sync/sync_windows.odin +++ b/core/sync/sync_windows.odin @@ -3,8 +3,6 @@ package sync import win32 "core:sys/windows" -foreign import kernel32 "system:kernel32.lib" - // A lock that can only be held by one thread at once. Mutex :: struct { _critical_section: win32.CRITICAL_SECTION,