shuffle to private/public wrapper

This commit is contained in:
Colin Davidson
2023-01-06 13:33:47 -08:00
parent 50a2493fd3
commit 6ff2db47b4
7 changed files with 21 additions and 11 deletions
+3 -3
View File
@@ -879,9 +879,9 @@ get_page_size :: proc() -> int {
return page_size
}
get_processor_thread_count :: proc() -> int {
thread_count := int(_unix_get_nprocs())
return thread_count
@(private)
_processor_core_count :: proc() -> int {
return int(_unix_get_nprocs())
}
_alloc_command_line_arguments :: proc() -> []string {