mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-08 14:42:51 -04:00
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:
parent
81a053aa1f
commit
ccaebe2fae
1 changed files with 2 additions and 0 deletions
|
@ -276,11 +276,13 @@ int bdnet_inet_aton(const char *name, struct in_addr *addr)
|
||||||
int sleep(unsigned int sec)
|
int sleep(unsigned int sec)
|
||||||
{
|
{
|
||||||
Sleep(sec * 1000);
|
Sleep(sec * 1000);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int usleep(unsigned int usec)
|
int usleep(unsigned int usec)
|
||||||
{
|
{
|
||||||
Sleep(usec / 1000);
|
Sleep(usec / 1000);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/********************************** WINDOWS/UNIX SPECIFIC PART ******************/
|
/********************************** WINDOWS/UNIX SPECIFIC PART ******************/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue