Sign in
chromium
/
external
/
gyp
/
d6c5dd51dc3a60bf4ff32a5256713690a1a10376
/
.
/
test
/
library
/
src
/
lib2.c
blob: 21dda726530fc2adf25a45062e303c3a06cb8ef2 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#ifdef
_WIN32
__declspec
(
dllexport
)
#endif
void
lib2_function
(
void
)
{
fprintf
(
stdout
,
"Hello from lib2.c\n"
);
fflush
(
stdout
);
}