Sign in
nest-open-source
/
nest-guard
/
1.0
/
connman
/
c51b9f435e753e1f24730e086be2005de6041d28
/
.
/
src
/
genbuiltin
blob: 3e1bb0cc8c07b571dacf6e77c1e19824ca696b5f [
file
] [
log
] [
blame
]
#!/bin/sh
for
i
in
$
*
do
echo
"extern struct connman_plugin_desc __connman_builtin_$i;"
done
echo
echo
"static struct connman_plugin_desc *__connman_builtin[] = {"
for
i
in
$
*
do
echo
" &__connman_builtin_$i,"
done
echo
" NULL"
echo
"};"