- Timestamp:
- 2014-09-27T14:54:35Z (10 years ago)
- Branches:
- master
- Children:
- ebe2c5e, f329dfc
- Parents:
- d348377
- Location:
- protocols
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/soap.h
rd348377 re252d8c 36 36 #include <string.h> 37 37 #include <sys/types.h> 38 #ifndef _WIN3239 38 #include <sys/socket.h> 40 39 #include <netinet/in.h> 41 40 #include <arpa/inet.h> 42 41 #include <unistd.h> 43 #endif44 42 #include "nogaim.h" 45 43 -
protocols/oscar/rxqueue.c
rd348377 re252d8c 9 9 #include <aim.h> 10 10 11 #ifndef _WIN3212 11 #include <sys/socket.h> 13 #endif14 12 15 13 /* -
protocols/oscar/txqueue.c
rd348377 re252d8c 9 9 #include "im.h" 10 10 11 #ifndef _WIN3212 11 #include <sys/socket.h> 13 #endif14 12 15 13 /* -
protocols/yahoo/libyahoo2.c
rd348377 re252d8c 48 48 */ 49 49 50 #ifndef _WIN3251 50 #include <unistd.h> 52 #endif53 51 #include <errno.h> 54 52 #include <stdio.h> -
protocols/yahoo/yahoo_httplib.c
rd348377 re252d8c 38 38 39 39 #include <errno.h> 40 #ifndef _WIN3241 40 #include <unistd.h> 42 #endif43 41 #include <ctype.h> 44 42 #include "yahoo2.h" -
protocols/yahoo/yahoo_util.h
rd348377 re252d8c 65 65 void y_strfreev(char **vector); 66 66 67 #ifndef _WIN3268 67 int strncasecmp(const char *s1, const char *s2, size_t n); 69 68 int strcasecmp(const char *s1, const char *s2); … … 73 72 int snprintf(char *str, size_t size, const char *format, ...); 74 73 int vsnprintf(char *str, size_t size, const char *format, va_list ap); 75 #endif76 74 77 75 #endif
Note: See TracChangeset
for help on using the changeset viewer.