1*cfd59ca9SAndres Freund // SPDX-License-Identifier: GPL-2.0 2*cfd59ca9SAndres Freund #include <stdio.h> 3*cfd59ca9SAndres Freund #include <dis-asm.h> 4*cfd59ca9SAndres Freund main(void)5*cfd59ca9SAndres Freundint main(void) 6*cfd59ca9SAndres Freund { 7*cfd59ca9SAndres Freund struct disassemble_info info; 8*cfd59ca9SAndres Freund 9*cfd59ca9SAndres Freund init_disassemble_info(&info, stdout, 10*cfd59ca9SAndres Freund NULL, NULL); 11*cfd59ca9SAndres Freund 12*cfd59ca9SAndres Freund return 0; 13*cfd59ca9SAndres Freund } 14