You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*! \file
|
|
* \brief General \ref System functionality (\ref System::reboot "reboot")
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
/*! \brief General System functions
|
|
*/
|
|
namespace System {
|
|
|
|
/*! \brief Perform a reboot
|
|
*/
|
|
void reboot();
|
|
} // namespace System
|