Sign in
qemu
/
meson
/
refs/heads/fixcygwin
/
.
/
test cases
/
common
/
273 both libraries
/
src
/
library.c
blob: bdd965f7fb96c072bcd2e981f1e6a528a22c865d [
file
] [
log
] [
blame
]
#include
"library.h"
#include
"both_libraries.h"
int
library_function
(
void
)
{
int
sum
=
both_libraries_function
();
#if defined EXPORT
return
sum
+
1
;
#else
return
sum
;
#endif
}