Changeset 66be784
- Timestamp:
- 2008-08-11T14:31:03Z (16 years ago)
- Branches:
- master
- Children:
- a02f34f
- Parents:
- 92f4ec5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/invitation.c
r92f4ec5 r66be784 28 28 #include "invitation.h" 29 29 #include "msn.h" 30 31 /* Some ifdefs for ulibc and apparently also BSD (Thanks to Whoopie) */ 32 #ifndef HOST_NAME_MAX 33 #include <sys/param.h> 34 #ifdef MAXHOSTNAMELEN 35 #define HOST_NAME_MAX MAXHOSTNAMELEN 36 #else 37 #define HOST_NAME_MAX 255 38 #endif 39 #endif 40 41 #ifndef AI_NUMERICSERV 42 #define AI_NUMERICSERV 0x0400 /* Don't use name resolution. */ 43 #endif 30 44 31 45 #ifdef debug
Note: See TracChangeset
for help on using the changeset viewer.