put function parameters on the same line where possible to fit style

This commit is contained in:
Beau McCartney
2024-10-06 22:45:10 -06:00
parent ac4f4e883a
commit 5c0c1287dc
+2 -11
View File
@@ -42,18 +42,9 @@ foreign mach {
semaphore_wait :: proc(semaphore: semaphore_t) -> kern_return_t ---
vm_allocate :: proc (
target_task : vm_map_t,
address : ^vm_address_t,
size : vm_size_t,
flags : vm_flags_t,
) -> kern_return_t ---
vm_allocate :: proc (target_task : vm_map_t, address: ^vm_address_t, size: vm_size_t, flags: vm_flags_t,) -> kern_return_t ---
vm_deallocate :: proc(
target_task: vm_map_t,
address : vm_address_t,
size : vm_size_t
) -> kern_return_t---
vm_deallocate :: proc(target_task: vm_map_t, address: vm_address_t, size: vm_size_t) -> kern_return_t---
vm_map :: proc (
target_task : vm_map_t,