diff options
| author | Tyler McGavran <tyler.taggerung@gmail.com> | 2023-08-26 14:48:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-26 12:48:45 -0600 |
| commit | 31d3ac14ec865363a273b804628f40ba5442a256 (patch) | |
| tree | ba9235b8af584d1a3cc27fd765c59c9a4ef13e5f /src/code_800029B0.h | |
| parent | b9b1d2f0c17f74e0fb068c67db05db4d82dd3abc (diff) | |
Put `void` in several function prototypes (#387)
I have historically made prototypes for argument-less functions
with just plain `()` for the argument list. This has caused some
minor pains when using `m2c` and is, pendatically, incorrect.
So I have changed all argument-less function protoypes to instead
have `(void)` as the argument list. This required a couple small
fixes here and there.
Diffstat (limited to 'src/code_800029B0.h')
| -rw-r--r-- | src/code_800029B0.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/code_800029B0.h b/src/code_800029B0.h index 749855a09..f0b0528e8 100644 --- a/src/code_800029B0.h +++ b/src/code_800029B0.h @@ -3,11 +3,11 @@ /* Function Prototypes */ -void func_800029B0(); -void setup_race(); -void func_80002DAC(); -void clear_nmi_buffer(); -void func_80003040(); +void func_800029B0(void); +void setup_race(void); +void func_80002DAC(void); +void clear_nmi_buffer(void); +void func_80003040(void); extern struct UnkStruct_800DC5EC *D_800DC5EC; extern struct UnkStruct_800DC5EC *D_800DC5F0; |
