diff options
author | marha <marha@users.sourceforge.net> | 2013-11-08 16:53:17 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-11-08 16:53:17 +0100 |
commit | 3ef320ddf5d23b4e69cc7d44a17f902e245f6426 (patch) | |
tree | 93613bf53ec448c47fade975f70c4ec6b0051cb6 /mesalib/src/mesa/main/imports.h | |
parent | f707ea3ce065f0ce40f586c40283fab42059b485 (diff) | |
download | vcxsrv-3ef320ddf5d23b4e69cc7d44a17f902e245f6426.tar.gz vcxsrv-3ef320ddf5d23b4e69cc7d44a17f902e245f6426.tar.bz2 vcxsrv-3ef320ddf5d23b4e69cc7d44a17f902e245f6426.zip |
Solved compilation and run-time problems after latest merge
Diffstat (limited to 'mesalib/src/mesa/main/imports.h')
-rw-r--r-- | mesalib/src/mesa/main/imports.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/imports.h b/mesalib/src/mesa/main/imports.h index d79e2a339..53e40b445 100644 --- a/mesalib/src/mesa/main/imports.h +++ b/mesalib/src/mesa/main/imports.h @@ -141,7 +141,6 @@ static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); } static inline float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; } static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; } #define strtoll(p, e, b) _strtoi64(p, e, b) -#define strcasecmp(s1, s2) _stricmp(s1, s2) #endif /*@}*/ |