Prevent compiler warning on Windows if jmorecfg.h is included after the Windows headers, which also define FAR.

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@891 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC
2013-01-06 17:59:42 +00:00

View File

@@ -212,8 +212,11 @@ typedef unsigned int JDIMENSION;
*/ */
#ifdef NEED_FAR_POINTERS #ifdef NEED_FAR_POINTERS
#ifndef FAR
#define FAR far #define FAR far
#endif
#else #else
#undef FAR
#define FAR #define FAR
#endif #endif