fix STBI_NO_HDR and STBI_NO_LINEAR to compile correctly even if you don't #include <math.h>

pull/547/merge
Sean Barrett 2018-01-30 05:39:29 -08:00
parent 085ba4b627
commit 602e986824
1 changed files with 2 additions and 2 deletions

View File

@ -511,8 +511,8 @@ STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const ch
#include <string.h>
#include <limits.h>
#if !defined(STBI_NO_LINEAR) && !defined(STBI_NO_HDR)
#include <math.h> // ldexp
#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR)
#include <math.h> // ldexp, pow
#endif
#ifndef STBI_NO_STDIO