blob: 70d0ad3854f78b85405cfd44f6939e815fd7af10 [file] [log] [blame]
liubin281ac462023-07-19 14:22:54 +08001#include <stdlib.h>
2#include "ql/ql_common.h"
3
4void Ql_Powerdown(int mode)
5{
6 switch (mode)
7 {
8 case 1:
9 system("halt");
10 break;
11 case 2:
12 system("reboot");
13 break;
14 default:
15 printf("mode error");
16 }
17
18 return ;
19
20}
21