summaryrefslogtreecommitdiff
path: root/src/radiola.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/radiola.c')
-rw-r--r--src/radiola.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/radiola.c b/src/radiola.c
new file mode 100644
index 0000000..aaaf047
--- /dev/null
+++ b/src/radiola.c
@@ -0,0 +1,17 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "config.h"
+#include "hw/hw.h"
+
+int main()
+{
+#if def(OS_LINUX)
+ printf("Compiled in Linux comp mode\n");
+#elif def(OS_NETBSD)
+ printf("Compiled in NetBSD comp mode\n");
+#else
+ printf("Unknown mode\n");
+#endif
+ return 0;
+}