Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
0878306386d42084e8abc3525393ae2b65acf725
/
.
/
Tests
/
ObjectLibrary
/
mainAB.c
blob: a7aa393174849a3adf5b7af1cce85e680352f58a [
file
] [
log
] [
blame
]
#include
"b.h"
extern
IMPORT_B
int
b1
(
void
);
extern
IMPORT_B
int
b2
(
void
);
#ifndef
NO_A
extern
int
a1
(
void
);
extern
int
a2
(
void
);
#endif
int
main
(
void
)
{
return
0
#ifndef
NO_A
+
a1
()
+
a2
()
#endif
+
b1
()
+
b2
();
}