Fix warning for Android NDK compiler: "function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]"

https://stackoverflow.com/questions/42125/warning-error-function-declaration-isnt-a-prototype
In C int foo() and int foo(void) are different functions. int foo() accepts an arbitrary number of arguments, while int foo(void) accepts 0 arguments. In C++ they mean the same thing.
This commit is contained in:
Amir
2024-07-17 22:09:32 +04:00
committed by Sam Lantinga
parent 94c40fb3c9
commit 5db08b86ca
44 changed files with 101 additions and 101 deletions

View File

@@ -51,7 +51,7 @@ static void SDL_DispatchMainCallbackEvent(SDL_Event *event)
}
}
static void SDL_DispatchMainCallbackEvents()
static void SDL_DispatchMainCallbackEvents(void)
{
SDL_Event events[16];
@@ -81,7 +81,7 @@ static int SDLCALL SDL_MainCallbackEventWatcher(void *userdata, SDL_Event *event
return 0;
}
SDL_bool SDL_HasMainCallbacks()
SDL_bool SDL_HasMainCallbacks(void)
{
if (SDL_main_iteration_callback) {
return SDL_TRUE;

View File

@@ -36,7 +36,7 @@
#include <sbv_patches.h>
#include <ps2_filesystem_driver.h>
__attribute__((weak)) void reset_IOP()
__attribute__((weak)) void reset_IOP(void)
{
SifInitRpc(0);
while (!SifIopReset(NULL, 0)) {
@@ -45,7 +45,7 @@ __attribute__((weak)) void reset_IOP()
}
}
static void prepare_IOP()
static void prepare_IOP(void)
{
reset_IOP();
SifInitRpc(0);
@@ -54,12 +54,12 @@ static void prepare_IOP()
sbv_patch_fileio();
}
static void init_drivers()
static void init_drivers(void)
{
init_ps2_filesystem_driver();
}
static void deinit_drivers()
static void deinit_drivers(void)
{
deinit_ps2_filesystem_driver();
}