summaryrefslogtreecommitdiff
path: root/tests/src/putsmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/putsmain.c')
-rw-r--r--tests/src/putsmain.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/src/putsmain.c b/tests/src/putsmain.c
new file mode 100644
index 0000000..9b2ce3c
--- /dev/null
+++ b/tests/src/putsmain.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int main()
+{
+ puts("puts() #1 called in main()");
+ puts("puts() #2 called in main()");
+
+ return 0;
+}