summaryrefslogtreecommitdiff
path: root/tests/fgets.c
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthew@masot.net>2023-07-25 14:58:33 -0700
committerMatthew Sotoudeh <matthew@masot.net>2023-07-25 14:58:33 -0700
commit1d943da0cf9154e7ce78ce867cdbb91531c5d78e (patch)
tree40c5c6c3ba7fafa6567aa5b5aa216caecf3935fc /tests/fgets.c
initial dietc commit
Diffstat (limited to 'tests/fgets.c')
-rw-r--r--tests/fgets.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/fgets.c b/tests/fgets.c
new file mode 100644
index 0000000..914eecc
--- /dev/null
+++ b/tests/fgets.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+void foo(FILE *s) {
+ char *x;
+ fgets(x, 0, s);
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback