diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-28 23:23:10 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-28 23:23:10 +0100 |
| commit | 4f28e9e1fbc1d2a61c3996b2813214e2344e7e6a (patch) | |
| tree | 71dd9800cec8f3d12cdf666f877bcec075e11cff /core/sync_linux.odin | |
| parent | 0622509807993e02ab9ed155f1864198fd180bf9 (diff) | |
Remove `type` prefix declarations
Diffstat (limited to 'core/sync_linux.odin')
| -rw-r--r-- | core/sync_linux.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sync_linux.odin b/core/sync_linux.odin index 387c0164d..2ceb9520e 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -3,11 +3,11 @@ import ( "os.odin"; ) -type Semaphore struct { +Semaphore :: struct { // _handle: win32.Handle, } -type Mutex struct { +Mutex :: struct { _semaphore: Semaphore, _counter: i32, _owner: i32, |