aboutsummaryrefslogtreecommitdiff
path: root/lib/system/windows/sleep.c
blob: f8ed0a333fd8e09f8b0c009c68086b8a17f8e3c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* If you need to redefine the Windows minimal version, redefine it here
 * before the internal header inclusion. */

#include "internals.h"
#ifndef LIBTIO_DISABLED_WINDOWS

TIO_EXTERN(int) tio_win_sleep(unsigned long ms)
{
	Sleep(ms);
	return (tio_ok);
}

#endif