Draw_point.c 101 B

1234567
  1. #include "psdriver.h"
  2. void PS_draw_point(double x, double y)
  3. {
  4. output("%f %f POINT\n", x, y);
  5. }