diff options
Diffstat (limited to 'doc/examples/timed/init.c')
-rw-r--r-- | doc/examples/timed/init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/examples/timed/init.c b/doc/examples/timed/init.c new file mode 100644 index 0000000..870e10d --- /dev/null +++ b/doc/examples/timed/init.c @@ -0,0 +1,8 @@ +#include <bus.h> +#include <stdio.h> + +int main() +{ + return bus_create("/tmp/example-bus", 0, NULL) && (perror("init"), 1); +} + |