Moved const and extern identifiers to the left

This commit is contained in:
Eduard Urbach 2025-04-04 20:15:31 +02:00
parent 1a2c21de15
commit 4c90b6ea6a
Signed by: eduard
GPG key ID: 49226B848C78F6C8
20 changed files with 69 additions and 86 deletions

View file

@ -1,7 +1,7 @@
create(func *any) -> int {
return kernel32.CreateThread(0, 4096, func, 0)
kernel32 extern {
CreateThread(attributes int, stackSize int, address *any, parameter int) -> int
}
extern kernel32 {
CreateThread(attributes int, stackSize int, address *any, parameter int) -> int
create(func *any) -> int {
return kernel32.CreateThread(0, 4096, func, 0)
}