Fixed empty parameter list in signatures of internal functions.

This commit is contained in:
Philipp Wiesemann 2016-11-16 22:08:51 +01:00
parent f69c47aaea
commit 2a8a7f92b7
20 changed files with 45 additions and 31 deletions

View file

@ -580,7 +580,7 @@ SDL_SYS_JoystickInit(void)
/* Function to return the number of joystick devices plugged in right now */
int
SDL_SYS_NumJoysticks()
SDL_SYS_NumJoysticks(void)
{
recDevice *device = gpDeviceList;
int nJoySticks = 0;
@ -598,7 +598,7 @@ SDL_SYS_NumJoysticks()
/* Function to cause any queued joystick insertions to be processed
*/
void
SDL_SYS_JoystickDetect()
SDL_SYS_JoystickDetect(void)
{
recDevice *device = gpDeviceList;
while (device) {