mirror of
https://github.com/KhronosGroup/Vulkan-Headers
synced 2024-11-21 14:29:07 -07:00
3fb9d9fde5
Occurs on AppleClang
14 lines
241 B
C
14 lines
241 B
C
/*
|
|
* Copyright 2022-2023 The Khronos Group Inc.
|
|
* Copyright 2022-2023 Valve Corporation
|
|
* Copyright 2022-2023 LunarG, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "vulkan/vk_icd.h"
|
|
|
|
int square(int i)
|
|
{
|
|
return i * i;
|
|
}
|