www.pudn.com > ¼Ä´æÆ÷¿ª·¢·¶Àý.zip > REGERROR.C


#include  
#include  
 
void 
regerror(s) 
const char *s; 
{ 
#ifdef ERRAVAIL 
	error("regexp: %s", s); 
#else 
/* 
	fprintf(stderr, "regexp(3): %s\n", s); 
	exit(1); 
*/ 
	return;	  /* let std. egrep handle errors */ 
#endif 
	/* NOTREACHED */ 
}