Hi,
> I'm getting the following real warnings in VC++: > > E:\src\freesci\src\scicore\console.c(718) : warning C4715: 'c_list_words' > : not all control paths return a value > E:\src\freesci\src\scicore\console.c(751) : warning C4715: > 'c_list_suffices' : not all control paths return a value Current (undocumented) convention for console operations is to return 0 on success and non-zero on error. (Their return values aren't used, so this won't trigger run-time problems on most architectures). llap, Christoph
