1 /** no_prev.c
2  **
3  ** This dummy file is used on systems without any previewer.
4  ** Its main purpose is to simplify the definition of a generic makefile
5  ** which must work even if no real file $(PREVIEWER).c exists.
6  **
7  ** 93/04/16  HWW  V 1.00
8  **/
9 
10 #include <stdio.h>
11 void Eprintf(const char *, ...);
12 
PicBuf_to_Dummy()13 void PicBuf_to_Dummy()
14 {
15 	Eprintf("Sorry - preview not supported here\n");
16 }
17