You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	compat: provide va_copy for old gcc versions.
Since we have this compat/va_copy.h header already we might just as well make use of it for more than one compiler. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
		| @@ -24,3 +24,6 @@ | ||||
| #if !defined(va_copy) && defined(_MSC_VER) | ||||
| #define va_copy(dst, src) ((dst) = (src)) | ||||
| #endif | ||||
| #if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3 | ||||
| #define va_copy(dst, src) __va_copy(dst, src) | ||||
| #endif | ||||
|   | ||||
		Reference in New Issue
	
	Block a user