Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
c36c19d7118bab0cf76c42e0ff105ffdd964c823
/
.
/
Tests
/
ObjectLibrary
/
main.c
blob: cc7568527c6d526b6ca0cbc88794a9a4e5f8e8c6 [
file
]
#if defined(_WIN32) && defined(SHARED_C)
# define IMPORT_C __declspec(dllimport)
#else
# define IMPORT_C
#endif
extern
IMPORT_C
int
b1
(
void
);
extern
IMPORT_C
int
b2
(
void
);
extern
IMPORT_C
int
c
(
void
);
int
main
(
void
)
{
return
0
+
c
()
+
b1
()
+
b2
();
}