mirror of
https://github.com/libjpeg-turbo/libjpeg-turbo
synced 2025-03-28 21:13:18 +00:00
tjutil.c: Fix compiler warning with Visual Studio
Apparently windows.h includes stdlib.h, which defines the max() and min() macros, so we need to ensure that tjutil.h is included after that.
This commit is contained in:
parent
2a9e3bd743
commit
875e873f26
4
tjutil.c
4
tjutil.c
@ -26,11 +26,10 @@
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "tjutil.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
#include <windows.h>
|
||||
#include "tjutil.h"
|
||||
|
||||
static double getFreq(void)
|
||||
{
|
||||
@ -58,6 +57,7 @@ double getTime(void)
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <sys/time.h>
|
||||
#include "tjutil.h"
|
||||
|
||||
double getTime(void)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user