OpenGrok
Cross Reference: mylib.c
xref
: /
external
/
chromium_org
/
tools
/
gyp
/
test
/
standalone-static-library
/
mylib.c
Home
|
History
|
Annotate
|
Download
|
only in
standalone-static-library
1
#
include
<
stdio.h
>
2
3
void
print
(
void
)
4
{
5
printf
(
"hello from
mylib.c
\n"
);
6
return
;
7
}
8