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