summaryrefslogtreecommitdiff
path: root/cesar/common/make/test/modules/a/src
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/common/make/test/modules/a/src')
-rw-r--r--cesar/common/make/test/modules/a/src/a.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/cesar/common/make/test/modules/a/src/a.c b/cesar/common/make/test/modules/a/src/a.c
new file mode 100644
index 0000000000..9fa32f6ae7
--- /dev/null
+++ b/cesar/common/make/test/modules/a/src/a.c
@@ -0,0 +1,25 @@
+/* Cesar project {{{
+ *
+ * Copyright (C) 2007 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file a.c
+ * \brief Test module for build system tests.
+ * \ingroup test
+ */
+#include "common/std.h"
+#include "a.h"
+
+#include <stdio.h>
+
+/**
+ * Print module's deepest thought.
+ */
+void
+a_print (void)
+{
+ printf ("I am the a module!\n");
+}