--
I've seen things you people wouldn't believe. Attack ships on fire off the
shoulder of Orion. I've watched C-beams glitter in the dark near the
Tannhauser Gate. All these memories will be lost in time, like tears in rain.
- Roy Baty, _Blader Runner_
#include <errno.h>
/* inline strerror() routine for UNIX beasts - needs POSIXising, etc */
#define Strerror(n) (((n) < 0 || (n) >= sys_nerr) \
? "error number out of range" \
: sys_errlist[n])
#ifdef cs_STDC_strerror
char *
strerror( size_t n)
{
return Strerror(n);
}
#endif
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Thu Nov 14 1996 - 16:35:05 GMT
This archive was generated by hypermail 2.3.0 : Mon Aug 29 2016 - 19:37:59 BST