ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
adsleep.cpp
Go to the documentation of this file.
1 
9 #include <admodel.h>
10 #include <stdlib.h>
11 
12 #if defined(_WIN32)
13  #include <windows.h>
14 #endif
15 
16 #ifndef _MSC_VER
17  #include <unistd.h>
18 #endif
19 
24 void ADSleep(unsigned int t)
25 {
26 #if defined(_WIN32)
27  Sleep(t);
28 #else
29  sleep(t);
30 #endif
31 }
void ADSleep(unsigned int t)
Description not yet available.
Definition: adsleep.cpp:24
Description not yet available.