mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-16 07:11:52 +00:00
Everywhere: void arguments to C functions
Problem: - C functions with no arguments require a single `void` in the argument list. Solution: - Put the `void` in the argument list of functions in C header files.
This commit is contained in:
parent
b990fc5d3a
commit
b2316701a8
Notes:
sideshowbarker
2024-07-19 00:35:40 +09:00
Author: https://github.com/ldm5180
Commit: b2316701a8
Pull-request: https://github.com/SerenityOS/serenity/pull/4522
14 changed files with 29 additions and 29 deletions
|
@ -425,8 +425,8 @@ void signal_trampoline_dummy()
|
|||
".att_syntax" ::"i"(Syscall::SC_sigreturn));
|
||||
}
|
||||
|
||||
extern "C" void asm_signal_trampoline();
|
||||
extern "C" void asm_signal_trampoline_end();
|
||||
extern "C" void asm_signal_trampoline(void);
|
||||
extern "C" void asm_signal_trampoline_end(void);
|
||||
|
||||
void create_signal_trampolines()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue