summaryrefslogtreecommitdiff
path: root/tests/test_printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_printf.c')
-rw-r--r--tests/test_printf.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_printf.c b/tests/test_printf.c
new file mode 100644
index 0000000..d444a52
--- /dev/null
+++ b/tests/test_printf.c
@@ -0,0 +1,7 @@
1#include "common.h"
2
3#include <stdio.h>
4
5int main(int argc, char** argv) {
6 printf("%s", "1234567");
7}