summaryrefslogtreecommitdiffstats
path: root/src/test.c
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2024-06-16 22:20:07 +0300
committergramanas <anastasis.gramm2@gmail.com>2024-06-16 22:20:07 +0300
commit40fbb328150d853d0d7a83ce447c3f008de38822 (patch)
tree2a41218d92e94c360692ef39162ff2d5348c0e3a /src/test.c
parentfb9a5b153f16d8c8fe961b6af0f54a7178e032a6 (diff)
downloadcgame-40fbb328150d853d0d7a83ce447c3f008de38822.tar.gz
cgame-40fbb328150d853d0d7a83ce447c3f008de38822.tar.bz2
cgame-40fbb328150d853d0d7a83ce447c3f008de38822.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__);
+}