Browse Source

Remove `foreign import` for `-vet`

gingerBill 5 years ago
parent
commit
b5f9c95ce7
1 changed files with 0 additions and 2 deletions
  1. 0 2
      core/sync/sync_windows.odin

+ 0 - 2
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,