Added _user_shutdown() prototype.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10249 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-11-26 14:41:53 +00:00
parent f59c73a3d5
commit 791fc0bf95
1 changed files with 7 additions and 1 deletions

View File

@ -52,8 +52,14 @@
#define CLEAR_BIT(a, b) ((a) & (~(1 << (b))))
#ifdef __cplusplus
extern "C"
extern "C" {
#endif
status_t shutdown(bool reboot);
status_t _user_shutdown(bool reboot);
#ifdef __cplusplus
}
#endif
#endif /* _KERNEL_KERNEL_H */