~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to compat/va_copy.h

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#if !defined(va_copy) && defined(_MSC_VER)
25
25
#define va_copy(dst, src) ((dst) = (src))
26
26
#endif
 
27
#if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3
 
28
#define va_copy(dst, src) __va_copy(dst, src)
 
29
#endif