blob: c2dbbf2b66e976cb49486a43f6bc7859ce415e1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _SYS_REBOOT_H
#define _SYS_REBOOT_H
#include <abi-bits/reboot.h>
#ifdef __cplusplus
extern "C" {
#endif
int reboot(int arg);
#ifdef __cplusplus
}
#endif
#endif // _SYS_REBOOT_H
|