mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
move all vlib modules to vlib/
This commit is contained in:
17
vlib/sync/sync_win.v
Normal file
17
vlib/sync/sync_win.v
Normal file
@ -0,0 +1,17 @@
|
||||
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
||||
// Use of this source code is governed by an MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
|
||||
module sync
|
||||
|
||||
struct Mutex {
|
||||
}
|
||||
|
||||
fn (m Mutex) lock() {
|
||||
panic('not implemented')
|
||||
}
|
||||
|
||||
fn (m Mutex) unlock() {
|
||||
panic('not implemented')
|
||||
}
|
||||
|
Reference in New Issue
Block a user