summaryrefslogtreecommitdiff
path: root/src/linux/reboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/reboot.c')
-rw-r--r--src/linux/reboot.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/reboot.c b/src/linux/reboot.c
new file mode 100644
index 00000000..68830d8e
--- /dev/null
+++ b/src/linux/reboot.c
@@ -0,0 +1,8 @@
+#include <sys/reboot.h>
+#include <errno.h>
+
+int reboot(int type)
+{
+ errno = ENOSYS;
+ return -1;
+}