aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/yahoo
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
committerdequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
commite252d8cab06e038e5801652bedf02de9170c7945 (patch)
treed83b96948a6f7b303e98727faa6a15ba8453ed09 /protocols/yahoo
parentd3483776b4b7f45b99127240d76f3c978c260ca2 (diff)
RIP native win32 support (use cygwin instead)
It has been broken for a very long time and nobody cared about it.
Diffstat (limited to 'protocols/yahoo')
-rw-r--r--protocols/yahoo/libyahoo2.c2
-rw-r--r--protocols/yahoo/yahoo_httplib.c2
-rw-r--r--protocols/yahoo/yahoo_util.h2
3 files changed, 0 insertions, 6 deletions
diff --git a/protocols/yahoo/libyahoo2.c b/protocols/yahoo/libyahoo2.c
index da427279..972ee134 100644
--- a/protocols/yahoo/libyahoo2.c
+++ b/protocols/yahoo/libyahoo2.c
@@ -47,9 +47,7 @@
*
*/
-#ifndef _WIN32
#include <unistd.h>
-#endif
#include <errno.h>
#include <stdio.h>
#include <stdarg.h>
diff --git a/protocols/yahoo/yahoo_httplib.c b/protocols/yahoo/yahoo_httplib.c
index fd63d507..93fdb263 100644
--- a/protocols/yahoo/yahoo_httplib.c
+++ b/protocols/yahoo/yahoo_httplib.c
@@ -37,9 +37,7 @@ char *strchr(), *strrchr();
#endif
#include <errno.h>
-#ifndef _WIN32
#include <unistd.h>
-#endif
#include <ctype.h>
#include "yahoo2.h"
#include "yahoo2_callbacks.h"
diff --git a/protocols/yahoo/yahoo_util.h b/protocols/yahoo/yahoo_util.h
index 8cb721c1..6b4da304 100644
--- a/protocols/yahoo/yahoo_util.h
+++ b/protocols/yahoo/yahoo_util.h
@@ -64,7 +64,6 @@ void *y_memdup(const void *addr, int n);
char **y_strsplit(char *str, char *sep, int nelem);
void y_strfreev(char **vector);
-#ifndef _WIN32
int strncasecmp(const char *s1, const char *s2, size_t n);
int strcasecmp(const char *s1, const char *s2);
@@ -72,7 +71,6 @@ char *strdup(const char *s);
int snprintf(char *str, size_t size, const char *format, ...);
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
-#endif
#endif