summaryrefslogtreecommitdiff
path: root/tests/src/putsmain.c
blob: 9b2ce3cab7b12b2f7b83e935750b995ebbc422de (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main()
{
  puts("puts() #1 called in main()");
  puts("puts() #2 called in main()");

  return 0;
}