aboutsummaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/monitor.c b/monitor.c
deleted file mode 100644
index b631e59..0000000
--- a/monitor.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * vim:ts=4:sw=4:expandtab
- *
- */
-#include <stdlib.h>
-#include <stdio.h>
-#include <unistd.h>
-
-void monitor() {
- printf("monitor started\n");
- for (;;) {
- }
-}
-
-void monitor_cleanup() {
- printf("monitor cleanup\n");
- _exit(EXIT_SUCCESS);
-}