summaryrefslogtreecommitdiff
path: root/package/cryptinit/src/p.c
blob: b061ea7df13ce637b9a0a721603855614a472907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <sys/reboot.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

int main() {
	int pid;

	sync();
	if((pid=fork()) == 0) {
		reboot(0x4321fedc);
		_exit(0);
	}
	waitpid(pid, NULL, 0);
	return(0);
}