mirror of
https://github.com/n64decomp/mk64
synced 2026-06-07 11:27:36 -04:00
31d3ac14ec
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.
14 lines
244 B
C
14 lines
244 B
C
#ifndef CAMERA_JUNK_H
|
|
#define CAMERA_JUNK_H
|
|
|
|
/* Function Prototypes */
|
|
|
|
void setup_camera_podium_ceremony(void);
|
|
void func_802816B8(void);
|
|
|
|
// guPerspective params
|
|
extern f32 D_80150148, D_8015014C, D_80150150;
|
|
extern f32 D_80150130[];
|
|
|
|
#endif
|