/*1Simple DirectMedia Layer2Copyright (C) 1997-2025 Sam Lantinga <[email protected]>34This software is provided 'as-is', without any express or implied5warranty. In no event will the authors be held liable for any damages6arising from the use of this software.78Permission is granted to anyone to use this software for any purpose,9including commercial applications, and to alter it and redistribute it10freely, subject to the following restrictions:11121. The origin of this software must not be misrepresented; you must not13claim that you wrote the original software. If you use this software14in a product, an acknowledgment in the product documentation would be15appreciated but is not required.162. Altered source versions must be plainly marked as such, and must not be17misrepresented as being the original software.183. This notice may not be removed or altered from any source distribution.19*/2021// Do our best to make sure va_copy is working22#if defined(_MSC_VER) && _MSC_VER <= 180023// Visual Studio 2013 tries to link with _vacopy in the C runtime. Newer versions do an inline assignment24#undef va_copy25#define va_copy(dst, src) dst = src2627#elif defined(__GNUC__) && (__GNUC__ < 3)28#define va_copy(dst, src) __va_copy(dst, src)29#endif303132