xref: /reactos/sdk/lib/crt/stdlib/obsol.c (revision 8a978a17)
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 _beep(unsigned nFreq, unsigned nDur)
12 {
13 	Beep(nFreq,nDur);
14 	return;
15 }
16 
17 /*
18  * @implemented
19  */
20 void _sleep(unsigned long ulTime)
21 {
22 	Sleep(ulTime);
23 	return;
24 }
25