repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
select: overhaul for time64
[musl.git]
/
src
/
linux
/
reboot.c
blob
7f12af79bc1ba13220cfca6f0c48357546019246
1
#include <sys/reboot.h>
2
#include
"syscall.h"
3
4
int
reboot
(
int
type
)
5
{
6
return
syscall
(
SYS_reboot
,
0xfee1dead
,
672274793
,
type
);
7
}