linux: Changed internal functions to be static.

This commit is contained in:
Philipp Wiesemann 2017-06-11 22:30:58 +02:00
parent 5b75e9033f
commit 22c221f3b0
3 changed files with 6 additions and 6 deletions

View file

@ -110,7 +110,7 @@ static int SDL_EVDEV_device_removed(const char *dev_path);
#if SDL_USE_LIBUDEV
static int SDL_EVDEV_device_added(const char *dev_path, int udev_class);
void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class,
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class,
const char *dev_path);
#endif /* SDL_USE_LIBUDEV */
@ -195,7 +195,7 @@ SDL_EVDEV_Quit(void)
}
#if SDL_USE_LIBUDEV
void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_event, int udev_class,
static void SDL_EVDEV_udev_callback(SDL_UDEV_deviceevent udev_event, int udev_class,
const char* dev_path)
{
if (dev_path == NULL) {