X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput.c;h=55199eba7681da22b1aa682020792eba0ba31029;hb=5e59f476152a343619f473c37f2b06e2b6ef15d3;hp=9bda9893851576e616defa73e0163e3741963e15;hpb=e2ad47b5b0ad98fc99579d4cd9ebee7db2a03d82;p=libsigrok.git diff --git a/output/output.c b/output/output.c index 9bda9893..55199eba 100644 --- a/output/output.c +++ b/output/output.c @@ -17,16 +17,18 @@ * along with this program. If not, see . */ -#include "sigrok.h" +#include -extern struct output_format output_text_binary; +extern struct output_format output_text_bits; extern struct output_format output_text_hex; +extern struct output_format output_binary; extern struct output_format output_vcd; extern struct output_format output_gnuplot; struct output_format *output_module_list[] = { - &output_text_binary, + &output_text_bits, &output_text_hex, + &output_binary, &output_vcd, &output_gnuplot, NULL,