summaryrefslogtreecommitdiff
path: root/src/port.c
blob: d6b947ea87b94828227f342466050c424b22be31 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "port.h"

#include <time.h>

void cssh_msleep( unsigned int msec )
{
	struct timespec ts;
	ts.tv_sec = msec / 1000;
	ts.tv_nsec = ( msec % 1000 ) * 1000000;
	nanosleep( &ts, NULL );
}