summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-02-24 15:05:47 -0700
committerBrian Paul <brianp@vmware.com>2015-02-24 17:10:28 -0700
commit612143b2d0b7ec84d43049908f454d79bebeeb5f (patch)
tree5486488bf4f9b98c9cd88935e4b585ec5f2ec1a4 /src/mesa/main/imports.h
parente033d2c6422066a69a98f0a073e87a78587a292a (diff)
downloadexternal_mesa3d-612143b2d0b7ec84d43049908f454d79bebeeb5f.zip
external_mesa3d-612143b2d0b7ec84d43049908f454d79bebeeb5f.tar.gz
external_mesa3d-612143b2d0b7ec84d43049908f454d79bebeeb5f.tar.bz2
mesa: remove unused isblank() function
Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 7fb9381..a6e4d9e 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -92,7 +92,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 */
-static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }
#define strtoll(p, e, b) _strtoi64(p, e, b)
#endif /* _MSC_VER < 1800 */
#define strcasecmp(s1, s2) _stricmp(s1, s2)