fix iax win32 build for inet_aton

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1136 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2006-04-13 03:58:01 +00:00
parent ecc2a3baa1
commit 429cdca58f
2 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,7 @@
#endif
void gettimeofday(struct timeval *tv, void /*struct timezone*/ *tz);
#include "winpoop.h"
#else

View File

@ -24,7 +24,6 @@ void gettimeofday(struct timeval *tv, void /*struct timezone*/ *tz);
static INLINE int inet_aton(char *cp, struct in_addr *inp)
{
int res;
int a1, a2, a3, a4;
unsigned int saddr;
if (sscanf(cp, "%d.%d.%d.%d", &a1, &a2, &a3, &a4) != 4)