Added missing returns.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3591 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-10-02 20:05:27 +00:00
parent 81a053aa1f
commit ccaebe2fae

View File

@ -276,11 +276,13 @@ int bdnet_inet_aton(const char *name, struct in_addr *addr)
int sleep(unsigned int sec)
{
Sleep(sec * 1000);
return 0;
}
int usleep(unsigned int usec)
{
Sleep(usec / 1000);
return 0;
}
/********************************** WINDOWS/UNIX SPECIFIC PART ******************/