remove ";" after private function "disasm_str"

After the private function disasm_str, there is an additional ";" after the function. If you invoke gcc with "-Wpedantic" it will warn about exactly this line of code.

The trailing ";" after disasm_str needs to be removed in aarch64.h, java.h, z80.h.

See last character in the following line: char disasm_str(chars,int n) {if(!s)return "?";while(n){s++;if(!*s){s++;n--;}}return *s?s:"?";};

Thanks a lot for udisasm,

Florian La Roche