I've been perusing grass51 sources and noticed many instances where The C++ style inline comments "//" are used. While it's legal in C99, there are still C compilers that'll choke on these. Please don't use them. Either use /* ... */ or #if 0 ... #endif. -- Eric G. Miller <egm2 at jps.net>