Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
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
));
}