X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Foutput.c;h=efb205c68192d8d020f590c86b04841cc9e3c886;hb=f9c6b5cfd3c0f6cb737f6a68f69034ce6819f36d;hp=5d76b1cf930f6b0ebff121675034a1b0cb548153;hpb=e34dbc9d0834d9dac310bc2dce844567adfffd08;p=libsigrok.git diff --git a/src/output/output.c b/src/output/output.c index 5d76b1cf..efb205c6 100644 --- a/src/output/output.c +++ b/src/output/output.c @@ -38,7 +38,7 @@ * Output module handling. * * libsigrok supports several output modules for file formats such as binary, - * VCD, gnuplot, and so on. It provides an output API that frontends can use. + * VCD, csv, and so on. It provides an output API that frontends can use. * New output modules can be added/implemented in libsigrok without having * to change the frontends at all. * @@ -59,7 +59,6 @@ extern SR_PRIV struct sr_output_module output_ascii; extern SR_PRIV struct sr_output_module output_binary; extern SR_PRIV struct sr_output_module output_vcd; extern SR_PRIV struct sr_output_module output_ols; -extern SR_PRIV struct sr_output_module output_gnuplot; extern SR_PRIV struct sr_output_module output_chronovu_la8; extern SR_PRIV struct sr_output_module output_csv; extern SR_PRIV struct sr_output_module output_analog; @@ -72,7 +71,6 @@ static const struct sr_output_module *output_module_list[] = { &output_binary, &output_bits, &output_csv, - &output_gnuplot, &output_hex, &output_ols, &output_vcd,