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