comparison src/lwlink.h @ 296:14d835cf02d9

Handle input files on command line and add some memory management utility functions
author lost
date Sat, 17 Jan 2009 20:54:58 +0000
parents 0f488febdc2b
children c52ad3135bd3
comparison
equal deleted inserted replaced
295:7a3d66e72a4c 296:14d835cf02d9
30 #ifndef __lwlink_c_seen__ 30 #ifndef __lwlink_c_seen__
31 31
32 extern int debug_level; 32 extern int debug_level;
33 extern int outformat; 33 extern int outformat;
34 extern char *outfile; 34 extern char *outfile;
35 extern int ninputfiles;
36 extern char **inputfiles;
35 37
38 #define __lwlink_E__ extern
39 #else
40 #define __lwlink_E__
36 #endif // __lwlink_c_seen__ 41 #endif // __lwlink_c_seen__
37 42
43 __lwlink_E__ void add_input_file(char *fn);
44
45 #undef __lwlink_E__
38 #endif //__lwlink_h_seen__ 46 #endif //__lwlink_h_seen__