ci: Fix -Wdeprecated-non-prototype warnings

Occurs on AppleClang
This commit is contained in:
Juan Ramos 2023-10-12 17:19:38 -06:00 committed by Juan Ramos
parent bbe0f575eb
commit 3fb9d9fde5
3 changed files with 5 additions and 5 deletions

View file

@ -34,7 +34,7 @@ if (MSVC)
endif()
# vk_icd.h
add_executable(vk_icd vk_icd.c)
add_library(vk_icd MODULE vk_icd.c)
target_link_libraries(vk_icd PRIVATE Vulkan::Headers)
# vk_layer.h

View file

@ -8,7 +8,7 @@
#include "vulkan/vk_icd.h"
int main()
int square(int i)
{
return 0;
return i * i;
}

View file

@ -8,7 +8,7 @@
#include "vulkan/vk_layer.h"
int foobar()
int square(int i)
{
return 0;
return i * i;
}