summaryrefslogtreecommitdiff
path: root/tests/test_fprintf.c
diff options
context:
space:
mode:
authorjvoisin2023-10-01 22:06:17 +0200
committerjvoisin2023-10-01 22:06:17 +0200
commit32b21b7d85383df49030b18240c1409e73001066 (patch)
tree461982e80c5dc2f1c99f11fe94efa2c8557a73fa /tests/test_fprintf.c
parent6a801d8a749da3889ec57030cee09d1d60b4663e (diff)
Add vfprintf`
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}