aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/daemon-depedencies/cleanup.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-29 10:43:58 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-29 10:43:58 +0100
commit7f14931def91afb3c6533df4e6ff1b6fa17d713c (patch)
treebcf15d8773f98d1e7ad48b4d4c3c61fa7668c6fb /doc/examples/daemon-depedencies/cleanup.c
parentadd almost all examples to info (diff)
downloadbus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.gz
bus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.bz2
bus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc/examples/daemon-depedencies/cleanup.c')
-rw-r--r--doc/examples/daemon-depedencies/cleanup.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/examples/daemon-depedencies/cleanup.c b/doc/examples/daemon-depedencies/cleanup.c
deleted file mode 100644
index f9ead6d..0000000
--- a/doc/examples/daemon-depedencies/cleanup.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <bus.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-#define t(stmt) if (stmt) goto fail
-
-
-
-int
-main()
-{
- char *bus_address = getenv("BUS_INIT");
- if (!bus_address || !*bus_address) {
- fprintf(stderr, "$BUS_INIT has not been set, its export statement "
- "should have been printed in bold red by ./init\n");
- return 1;
- }
- t(bus_unlink(bus_address));
- return 0;
-
-fail:
- perror("cleanup");
- return 1;
-}
-