mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-24 23:49:18 -06:00
9 lines
144 B
C
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));
|
|
}
|