Sign in
ara-mdk
/
platform
/
ndk
/
f616538a7f20e82157587efa026cedc3b9944542
/
.
/
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
;
}