Blob: genbuiltin
Blob id: e60b5189a1bd432a61b0b22e8cfdbaf7fc5bf33b
Size: 243 B
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh for i in $* do echo "extern const struct obex_plugin_desc __obex_builtin_$i;" done echo echo "static const struct obex_plugin_desc *__obex_builtin[] = {" for i in $* do echo " &__obex_builtin_$i," done echo " NULL" echo "};" |