* configure.in,test/test-sleep-forever.c,test/test-names.c:
[platform/upstream/dbus.git] / test / test-sleep-forever.c
1 /* This is a process that just sleeps infinitely. */
2
3 #include <config.h>
4 #include <stdlib.h>
5 #ifdef HAVE_UNISTD_H
6 #include <unistd.h>
7 #endif
8
9 int
10 main (int argc, char **argv)
11 {
12   while (1)
13     sleep (10000000);
14   
15   return 1;
16 }