]> git.wh0rd.org - home.git/blame - X-life-line.c
cros-board: update
[home.git] / X-life-line.c
CommitLineData
5b61754d
MF
1/* Application to have X launch so I can restart window manager
2 * without having to restart X (and thus all my apps).
3 */
4#include <signal.h>
5#include <unistd.h>
6int main(int argc, char *argv[])
7{
8 signal(SIGCHLD, SIG_IGN);
9 while (1)
10 sleep(3600);
11 return 0;
12}