mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 04:20:08 +01:00
13 lines
161 B
C
13 lines
161 B
C
|
|
/* This is a process that just sleeps infinitely. */
|
||
|
|
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
int
|
||
|
|
main (int argc, char **argv)
|
||
|
|
{
|
||
|
|
while (1)
|
||
|
|
sleep (10000000);
|
||
|
|
|
||
|
|
return 1;
|
||
|
|
}
|