#include <midi.h>

FreeMpuCmd(m)
	MpuCmd *m;
/*
** Free up space used by 'm'.
*/
{
	if (m->mpu_cmd) free(m->mpu_cmd);
	free(m);
}
