- Timestamp:
- Feb 3, 2015 12:59:54 PM (10 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/dir.c
r2734 r2773 1321 1321 /* Hooks for globbing. */ 1322 1322 1323 #if defined(KMK) && !defined(__OS2__) 1324 # include "glob/glob.h" 1325 #else 1323 1326 #include <glob.h> 1327 #endif 1324 1328 1325 1329 /* Structure describing state of iterating through a directory hash table. */ -
trunk/src/kmk/kmk_cc_exec.h
r2771 r2773 33 33 void kmk_cc_print_stats(void); 34 34 35 struct variable; 35 36 extern struct kmk_cc_evalprog *kmk_cc_compile_variable_for_eval(struct variable *pVar); 36 37 extern struct kmk_cc_expandprog *kmk_cc_compile_variable_for_expand(struct variable *pVar); 37 char *kmk_exec_expand_to_var_buf(struct variable *pVar, char *pchDst);38 voidkmk_exec_evalval(struct variable *pVar);39 voidkmk_cc_variable_changed(struct variable *pVar);40 voidkmk_cc_variable_deleted(struct variable *pVar);38 extern char *kmk_exec_expand_to_var_buf(struct variable *pVar, char *pchDst); 39 extern void kmk_exec_evalval(struct variable *pVar); 40 extern void kmk_cc_variable_changed(struct variable *pVar); 41 extern void kmk_cc_variable_deleted(struct variable *pVar); 41 42 42 43
Note:
See TracChangeset
for help on using the changeset viewer.