Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
cd6771646aa56e8a791105b335fc8bce309daa85
/
.
/
Tests
/
RunCMake
/
AutoExportDll
/
hello2.c
blob: 66e7cafdf1a9e519fe0b2a4a066a7e2acf036d8b [
file
]
#include
<stdio.h>
extern
int
own_auto_export_function
(
int
i
);
void
hello2
(
void
)
{
printf
(
"hello exec:%i"
,
own_auto_export_function
(
41
));
}