summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2016-02-12 10:29:22 +0000
committerJose Fonseca <jfonseca@vmware.com>2016-02-12 10:31:15 +0000
commitc69ef377c8b30ee8d4088cfc586fe4100a5f0e62 (patch)
tree7cfbc46bce935d108624da4791eb50d435853543 /src/mesa/main/imports.h
parent5bc8d34526bcacc6d30d7925dab4e7c2ded3b360 (diff)
downloadexternal_mesa3d-c69ef377c8b30ee8d4088cfc586fe4100a5f0e62.zip
external_mesa3d-c69ef377c8b30ee8d4088cfc586fe4100a5f0e62.tar.gz
external_mesa3d-c69ef377c8b30ee8d4088cfc586fe4100a5f0e62.tar.bz2
mesa: Remove support for MSVC2008.
Spotted by Emil Velikov. Trivial.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index ad7af5c..d96d666 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -83,9 +83,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
#if defined(_MSC_VER)
-#if _MSC_VER < 1800 /* Not req'd on VS2013 and above */
-#define strtoll(p, e, b) _strtoi64(p, e, b)
-#endif /* _MSC_VER < 1800 */
#define strcasecmp(s1, s2) _stricmp(s1, s2)
#endif
/*@}*/