blob: 8b69814e1103767fdb7263437e29b39e866cbe1b [file] [log] [blame]
#!/bin/sh
for i in $*
do
echo "extern struct l_plugin_desc __iwd_builtin_$i;"
done
echo
echo "static struct l_plugin_desc *__iwd_builtin[] = {"
for i in $*
do
echo " &__iwd_builtin_$i,"
done
echo " NULL"
echo "};"