aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/util.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2014-07-07 14:13:46 +0200
committerPierre Ossman <ossman@cendio.se>2014-07-07 14:13:46 +0200
commit5ad4d06006e96b1c7ff663ffcd5e406e06bae1c2 (patch)
tree659c6081230675758edcfb66a394fc1aa3e1bacb /common/rfb/util.h
parent890c10118c8a0db4fddb53a161f207c6ad23c130 (diff)
downloadtigervnc-5ad4d06006e96b1c7ff663ffcd5e406e06bae1c2.tar.gz
tigervnc-5ad4d06006e96b1c7ff663ffcd5e406e06bae1c2.zip
Remove a lot of platform compatibilty stuff
It's either not used, or no longer relevant.
Diffstat (limited to 'common/rfb/util.h')
-rw-r--r--common/rfb/util.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/common/rfb/util.h b/common/rfb/util.h
index 7d90a6b2..13dbe68e 100644
--- a/common/rfb/util.h
+++ b/common/rfb/util.h
@@ -104,17 +104,4 @@ namespace rfb {
#define __rfbmin(a,b) (((a) < (b)) ? (a) : (b))
#endif
-// Declare strcasecmp() and/or strncasecmp() if absent on this system.
-
-#if !defined(WIN32) && !defined(HAVE_STRCASECMP)
-extern "C" {
- int strcasecmp(const char *s1, const char *s2);
-}
-#endif
-#if !defined(WIN32) && !defined(HAVE_STRNCASECMP)
-extern "C" {
- int strncasecmp(const char *s1, const char *s2, size_t n);
-}
-#endif
-
#endif