Files
resiprocate/tfm/TfmHelper.cxx
Scott Godin b74937ad63 -updates for sleepSeconds inclusion in rutil/time.hxx
-make VS2010 project files format match the rest of resip - flatten Source and Header files to a single list
-fix linux compilation issue with missing #include <map> in TransportDriver.hxx

git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@11013 ddefafc4-47db-0310-ae44-fa13212b10f2
2014-03-02 18:23:48 +00:00

18 lines
281 B
C++

#include "TfmHelper.hxx"
/* No longer needed - provided by rutil\time.hxx now
#ifdef WIN32
# include <windows.h>
#else
#include <unistd.h>
#endif
void sleepSeconds(unsigned int seconds)
{
#ifdef WIN32
Sleep(seconds*1000);
#else
sleep(seconds);
#endif
}*/