:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / stdlib / obsol.c
1 #include <windows.h>
2 #include <msvcrt/stdlib.h>
3
4 #undef _cpumode
5 unsigned char _cpumode = 0;
6 unsigned char *_cpumode_dll = &_cpumode;
7
8 void _seterrormode(int nMode)
9 {
10         SetErrorMode(nMode);
11         return;
12 }
13
14 void _beep(unsigned nFreq, unsigned nDur)
15 {
16         Beep(nFreq,nDur);
17         return;
18 }
19
20 void _sleep(unsigned long ulTime)
21 {
22         Sleep(ulTime);
23         return;
24 }