Changeset 1980 for trunk/src/kmk/function.c
- Timestamp:
- Oct 28, 2008, 12:25:49 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/function.c
r1972 r1980 340 340 /* Do the hash table lookup. */ 341 341 342 __inline staticconst struct function_table_entry *342 MY_INLINE const struct function_table_entry * 343 343 lookup_function_in_hash_tab (const char *s, unsigned char len) 344 344 { … … 352 352 /* Look up a function by name. */ 353 353 354 __inline staticconst struct function_table_entry *354 MY_INLINE const struct function_table_entry * 355 355 lookup_function (const char *s, unsigned int len) 356 356 { … … 517 517 0), 518 518 sizeof (struct nameseq)); 519 #else 519 #else /* CONFIG_WITH_ALLOC_CACHES */ 520 520 chain = multi_glob (parse_file_seq 521 521 (&line, '\0', &nameseq_cache, … … 525 525 0), 526 526 &nameseq_cache); 527 #endif 527 #endif /* CONFIG_WITH_ALLOC_CACHES */ 528 528 529 529 if (result == 0) … … 1032 1032 free (var->value); 1033 1033 var->value = savestring (p, len); 1034 1034 1035 result = allocated_variable_expand (body); 1035 1036
Note:
See TracChangeset
for help on using the changeset viewer.