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

void sub_with_global()
{
  fprintf(stdout, "sub_with_global() has been reached.\n");
  fprintf(stdout, "sub_with_global() is returning.\n");
}