Files
CMake/Tests/RunCMake/AutoExportDll/hello2.c
2023-10-26 09:20:45 -04:00

9 lines
144 B
C

#include <stdio.h>
extern int own_auto_export_function(int i);
void hello2(void)
{
printf("hello exec:%i", own_auto_export_function(41));
}