1 /* $Id: plotnull.c 7522 2005-12-09 18:14:24Z kb $
2 
3 Copyright (C) 2000  The PARI group.
4 
5 This file is part of the PARI/GP package.
6 
7 PARI/GP is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation. It is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY WHATSOEVER.
11 
12 Check the License for details. You should have received a copy of it, along
13 with the package; see the file 'COPYING'. If not, write to the Free Software
14 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
15 
16 #include "pari.h"
17 #include "rect.h"
18 
19 void
rectdraw0(long * w,long * x,long * y,long lw)20 rectdraw0(long *w, long *x, long *y, long lw)
21 {
22   (void)w;
23   (void)x;
24   (void)y;
25   (void)lw;
26 }
27 
28 void
PARI_get_plot(long f)29 PARI_get_plot(long f)
30 {
31   (void)f;
32   pari_err(talker,"high resolution graphics disabled");
33 }
34