dab036a198b61317dd85f68e5c83027c875d7fe9
[reactos.git] / reactos / lib / sdk / crt / stdlib / obsol.c
1 #include <precomp.h>
2 #include <stdlib.h>
3
4 #undef _cpumode
5 unsigned char _cpumode = 0;
6 unsigned char *_cpumode_dll = &_cpumode;
7
8 /*
9 * @implemented
10 */
11 void _seterrormode(int nMode)
12 {
13 SetErrorMode(nMode);
14 return;
15 }
16
17 /*
18 * @implemented
19 */
20 void _beep(unsigned nFreq, unsigned nDur)
21 {
22 Beep(nFreq,nDur);
23 return;
24 }
25
26 /*
27 * @implemented
28 */
29 void _sleep(unsigned long ulTime)
30 {
31 Sleep(ulTime);
32 return;
33 }