diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-10-01 17:09:57 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-10-01 17:09:57 +0100 |
| commit | c1e720a49b3dedf5ad8f0b4b2b444bf3f160834f (patch) | |
| tree | 84acc5f822df2d2eea85564d0077f730ae15644d /core/sync_linux.odin | |
| parent | f38c8875b2211ac6112ff7b17e3cbb31a09757fb (diff) | |
`match` to `switch`; Optional semicolons after "import" statements
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 0df140efe..74f5cdc21 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -1,5 +1,5 @@ -import "core:atomics.odin"; -import "core:os.odin"; +import "core:atomics.odin" +import "core:os.odin" Semaphore :: struct { // _handle: win32.Handle, |