static int rval;
#ifdef COLORLS
static bool
do_color_from_env(void)
{
return (doit &&
(isatty(STDOUT_FILENO) || getenv("CLICOLOR_FORCE")));
}
#endif
do_color(void)
return (false);
else if (colorflag == COLORFLAG_ALWAYS)
return (true);
return (do_color_from_env());
#else
-