diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-12 15:42:21 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-12 15:42:21 +0100 |
| commit | 6b5e9aec8e0120669cad45056fbf268163b02233 (patch) | |
| tree | 3a5dfa18cbfbfc2bfb095f1c9430f73df1030b72 /core/sync_linux.odin | |
| parent | 2ab0d9757388d1ec84db56b6ebb49a2ffff34d62 (diff) | |
Pascal style declaration grouping with ()
Diffstat (limited to 'core/sync_linux.odin')
| -rw-r--r-- | core/sync_linux.odin | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/sync_linux.odin b/core/sync_linux.odin index cee68f420..c3fc649b9 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -1,5 +1,7 @@ -import "atomics.odin"; -import "os.odin"; +import ( + "atomics.odin"; + "os.odin"; +) type Semaphore struct { // _handle: win32.Handle, |