Fix INLINE macro on Windows

BUG=608347
R=noel@chromium.org, scroggo@chromium.org

Review URL: https://codereview.chromium.org/1945173004 .
diff --git a/jconfigint.h b/jconfigint.h
index 587f8ca..99bfd4f 100644
--- a/jconfigint.h
+++ b/jconfigint.h
@@ -4,17 +4,13 @@
 
 /* How to obtain function inlining. */
 #ifndef INLINE
-  #ifndef TURBO_FOR_WINDOWS
-    #define INLINE inline __attribute__((always_inline))
-  #else
-    #if defined(__GNUC__)
-      #define INLINE inline __attribute__((always_inline))
-    #elif defined(_MSC_VER)
-      #define INLINE __forceinline
-    #else
-      #define INLINE
-    #endif
-  #endif
+#if defined(__GNUC__)
+#define INLINE inline __attribute__((always_inline))
+#elif defined(_MSC_VER)
+#define INLINE __forceinline
+#else
+#define INLINE
+#endif
 #endif
 
 /* Define to the full name of this package. */