summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/AutoExportDll/hello2.c
blob: 66e7cafdf1a9e519fe0b2a4a066a7e2acf036d8b (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

extern int own_auto_export_function(int i);

void hello2(void)
{
  printf("hello exec:%i", own_auto_export_function(41));
}