summaryrefslogtreecommitdiff
path: root/tests/src/puts_noarg.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/puts_noarg.c')
-rw-r--r--tests/src/puts_noarg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/src/puts_noarg.c b/tests/src/puts_noarg.c
new file mode 100644
index 0000000..fe7d494
--- /dev/null
+++ b/tests/src/puts_noarg.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+void puts_noarg()
+{
+ puts("puts_noarg() has been reached.");
+ puts("puts_noarg() is returning.");
+}