Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
Dependency
/
Case5
/
bar.c
blob: fcbd135de2ad1ed548adbd9c3c00ca86dbce85bd [
file
]
#ifdef
_WIN32
__declspec
(
dllimport
)
#endif
void
foo
(
void
);
#include
<stdio.h>
void
bar
(
void
)
{
foo
();
printf
(
"bar()\n"
);
}