The sigrok project enforces warnings when public routines of compile
units lack prototypes. Add a prototype for the irmp.c:print_spectrum()
routine to silence a compiler warning. An alternative would have been to
mark the routine as static (it's exclusively used within the same file).
*---------------------------------------------------------------------------------------------------------------------------------------------------
*/
+void print_spectrum (char * text, int * buf, int is_pulse);
void
print_spectrum (char * text, int * buf, int is_pulse)
{