blob: dac8623e67f03c4baea3255d0c7b566cad562448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LITTLEWIRE_UTIL_H
#define LITTLEWIRE_UTIL_H
#ifdef LINUX
#include <unistd.h>
#else
#include <windows.h>
#endif
/* Delay in miliseconds */
void delay(unsigned int duration);
#endif
|