diff leo-obj/tool/main.c @ 145:25d3ead621f8

tiobjd: ctypes command implemented
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 29 Apr 2014 04:49:17 +0000
parents fbdb7686a9e9
children 069b79b36228
line wrap: on
line diff
--- a/leo-obj/tool/main.c	Mon Apr 28 08:04:39 2014 +0000
+++ b/leo-obj/tool/main.c	Tue Apr 29 04:49:17 2014 +0000
@@ -10,6 +10,7 @@
 #include "globals.h"
 
 extern int cmd_basics();
+extern int cmd_ctypes();
 extern int cmd_disasm();
 extern int cmd_ln();
 extern int cmd_nm();
@@ -25,6 +26,7 @@
 	int	(*func)();
 } cmdtab[] = {
 	{"basics", cmd_basics},
+	{"ctypes", cmd_ctypes},
 	{"disasm", cmd_disasm},
 	{"dumpsym", cmd_symtab},	/* backward compat */
 	{"hdr", dump_filehdr_info},