Displaying 1 result from an estimated 1 matches for "e3842c5".
Did you mean:
  e18425
  
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...vate/macros.h
+++ b/src/libFLAC/include/private/macros.h
@@ -57,4 +57,10 @@
 #define flac_min(a,b) __min(a,b)
 #endif
 
+#if !defined(__cplusplus) && defined(_MSC_VER)
+#ifndef inline
+#define inline __inline
+#endif
+#endif
+
 #endif
diff --git a/src/libFLAC/lpc.c b/src/libFLAC/lpc.c
index e3842c5..02cda9a 100644
--- a/src/libFLAC/lpc.c
+++ b/src/libFLAC/lpc.c
@@ -38,6 +38,7 @@
 #include "FLAC/format.h"
 #include "private/bitmath.h"
 #include "private/lpc.h"
+#include "private/macros.h"
 #if defined DEBUG || defined FLAC__OVERFLOW_DETECT || defined FLA...