Sign in
ara-mdk
/
platform
/
ndk
/
cc93d6b42a237b265144430b77da8a24d62b52f9
/
.
/
tests
/
build
/
topological-sort
/
jni
/
main.c
blob: 3f209879e0b31aa9c8f6afc2f3ee8ab0d2de9f5d [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
"foo.h"
#include
"bar.h"
int
main
()
{
int
x
=
10
;
printf
(
"foo(%d) = %d\n"
,
x
,
foo
(
x
));
printf
(
"bar(%d) = %d\n"
,
x
,
bar
(
x
));
return
0
;
}