/* Sets line width */

#include "plplot.h"

void plwid(width)
int width;
{
      int level;

      glev(&level);
      if (level < 1)  plexit("Please call plstar before calling plwid.");

      swid(width);
      grwid();
}
