summaryrefslogtreecommitdiffstats
path: root/src/test.c
diff options
context:
space:
mode:
authorgrm <grm@eyesin.space>2024-06-16 22:20:07 +0300
committergrm <grm@eyesin.space>2024-06-16 22:20:07 +0300
commitbf19cf357ef64ef727f3687329dd5aa3e66d2752 (patch)
tree2a41218d92e94c360692ef39162ff2d5348c0e3a /src/test.c
parent92bee705c1533a7e06c8aefd1221618b31d0fd6f (diff)
downloadcgame-bf19cf357ef64ef727f3687329dd5aa3e66d2752.tar.gz
cgame-bf19cf357ef64ef727f3687329dd5aa3e66d2752.tar.bz2
cgame-bf19cf357ef64ef727f3687329dd5aa3e66d2752.zip
Start integrating pds, fix warnings and add new test build object
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test.c b/src/test.c
new file mode 100644
index 0000000..9a5aeb9
--- /dev/null
+++ b/src/test.c
@@ -0,0 +1,8 @@
+#include "test.h"
+#include <stdio.h>
+
+void
+test_func()
+{
+ printf("This is a test from %s\n", __FILE__);
+}