:i	static char Vsmsg_sccs_id[] = "%W% %G%";
:1#include "V.h"
/*
* Write to the syslog and/or the Vout file.  This is normally invoked
* conditionally via the S?() macros.
*/
/*ARGSUSED*/
/*VARARGS2*/
Vsmsg(code,fmt,ARGLIST)
	int   code;
	char *fmt;
	long  ARGLIST;
{	int r=0;
#if defined(SYSLOG)
	syslog(code,fmt,ARGLIST);
#endif
	Vpmsg(code,fmt,ARGLIST);
	return r;
}
