summaryrefslogtreecommitdiffstats
path: root/commandline/library/littleWire_util.h
blob: 1f060c392c422319724b6b16097b74a75e142266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LITTLEWIRE_UTIL_H
#define LITTLEWIRE_UTIL_H

#if defined WIN
  #include <windows.h>
#else
  #include <unistd.h>
#endif

/* Delay in miliseconds */
void delay(unsigned int duration);

// end LITTLEWIRE_UTIL_H section:
#endif