1 /*
2  * Copyright © 1988-2004 Keith Packard and Bart Massey.
3  * All Rights Reserved.  See the file COPYING in this directory
4  * for licensing information.
5  */
6 
7 #include	"nickle.h"
8 #include	"gram.h"
9 
10 Bool	signalError;
11 
12 void
PrintError(char * s,...)13 PrintError (char *s, ...)
14 {
15     va_list args;
16 
17     va_start (args, s);
18     FileVPrintf (FileStderr, s, args);
19     va_end (args);
20 }
21