aboutsummaryrefslogtreecommitdiff
path: root/tests/semconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/semconfig.h')
-rw-r--r--tests/semconfig.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/semconfig.h b/tests/semconfig.h
new file mode 100644
index 0000000..2878dbe
--- /dev/null
+++ b/tests/semconfig.h
@@ -0,0 +1,9 @@
+#ifndef CONFIG_H
+#define CONFIG_H 1
+
+#define LOG(text) printf("%s\n", text);
+#define CMD(cmd) LOG(cmd); cmd;
+#define TESTSEM "/testsem"
+#define CNTSEM "/testcnt"
+
+#endif