#include /* Send a MIDI reset to stdout. Useful if you have a synth that won't shut up. */ void main() { int i; putchar(255); for(i=0;i<=15;i++) { putchar(208+i); putchar(127); }; fflush(stdout); }