vulkan: Possibly fix a compiler warning (-Wstrict-prototypes).

This commit is contained in:
Ryan C. Gordon 2018-02-21 22:27:09 -05:00
parent c7e4366530
commit ac309df7b4

View File

@ -81,8 +81,8 @@ extern SDL_bool SDL_Vulkan_GetInstanceExtensions_Helper(unsigned *userCount,
/* No SDL Vulkan support, just include the header for typedefs */
#include "SDL_vulkan.h"
typedef void (*PFN_vkGetInstanceProcAddr) ();
typedef int (*PFN_vkEnumerateInstanceExtensionProperties) ();
typedef void (*PFN_vkGetInstanceProcAddr) (void);
typedef int (*PFN_vkEnumerateInstanceExtensionProperties) (void);
#endif /* SDL_VIDEO_VULKAN */