home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d3xx / d306 / rexxplplot.lha / RexxPlPlot / src / src.zoo / plgra.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-06  |  187 b   |  12 lines

  1. /* Switches to graphics mode */
  2.  
  3. #include "plplot.h"
  4.  
  5. void plgra()
  6. {
  7.       int level;
  8.       glev(&level);
  9.       if (level < 1) fatal("Please call PLSTAR before PLGRA.");
  10.       grgra();
  11. }
  12.