--- ray/src/common/wputs.c 2003/06/07 12:50:21 3.5 +++ ray/src/common/wputs.c 2023/02/06 22:40:21 3.7 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: wputs.c,v 3.5 2003/06/07 12:50:21 schorsch Exp $"; +static const char RCSid[] = "$Id: wputs.c,v 3.7 2023/02/06 22:40:21 greg Exp $"; #endif /* * Default warning output function. @@ -7,13 +7,14 @@ static const char RCSid[] = "$Id: wputs.c,v 3.5 2003/0 #include "copyright.h" -#include "standard.h" +#include +#include "rterror.h" + int nowarn = 0; /* don't print warnings? */ void -wputs(s) -char *s; +wputs(const char *s) { if (!nowarn) eputs(s);