summaryrefslogtreecommitdiffstats
path: root/test/ram-test.c
diff options
context:
space:
mode:
authorAnton L. Šijanec <anton@sijanec.eu>2020-05-03 21:00:05 +0200
committerAnton L. Šijanec <anton@sijanec.eu>2020-05-03 21:00:05 +0200
commitf80f005c602654abe137f152a5128c8abd81f9a7 (patch)
tree883df3ae2bb5873c34ea05a379122bd28db7a831 /test/ram-test.c
parentfix glede na prejšnji komit (diff)
downloadbverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar.gz
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar.bz2
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar.lz
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar.xz
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.tar.zst
bverbose-f80f005c602654abe137f152a5128c8abd81f9a7.zip
Diffstat (limited to 'test/ram-test.c')
-rw-r--r--test/ram-test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ram-test.c b/test/ram-test.c
new file mode 100644
index 0000000..8ef0aa2
--- /dev/null
+++ b/test/ram-test.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+int ram_contents[1024];
+int main(int argc, char * argv[]) {
+ printf("%s\n", ram_contents);
+ return 0;
+}