comparison tool/globals.c @ 5:5ba13fd0e737

ti-libpatch: archive member vars moved into globals.[ch]
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sat, 06 Jun 2015 03:16:28 +0000
parents 12e230d431f0
children
comparison
equal deleted inserted replaced
4:e33380b5bd46 5:5ba13fd0e737
1 /* 1 /*
2 * This module contains global variable definitions for our libpatch tool. 2 * This module contains global variable definitions for our libpatch tool.
3 */ 3 */
4 4
5 #include <sys/types.h>
6
5 char *lib_in_filename, *lib_out_filename; 7 char *lib_in_filename, *lib_out_filename;
6 char *patch_desc_filename; 8 char *patch_desc_filename;
7 struct patch_module_desc *patch_module_list; 9 struct patch_module_desc *patch_module_list;
10
11 char member_name[17];
12 unsigned member_size;
13 u_char *member_body;