initial comit
[reactos.git] / os2 / apps / bepslep / bepslep.c
1
2
3 #include "../../dll/doscalls/doscalls.h"
4
5 void Eingang()
6 {
7 DosBeep(3000,300);
8 DosSleep(1000);
9 DosBeep(4000,200);
10 DosExit(0,0);
11 }
12
13 void WinMainCRTStartup()
14 {
15 int a, b;
16 a= b+3;
17 b=a+3;
18 Eingang();
19 }