blob: 1ef0c3d7a48264b47a8994c99759261c98423b80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- hpgl.c.orig Thu Jul 17 03:40:40 1997
+++ hpgl.c Fri Dec 10 03:07:38 1999
@@ -11,10 +11,8 @@
#include "xgout.h"
#include "plotter.h"
#include <stdio.h>
+#include <stdlib.h>
#include <math.h>
-#define MAX(a,b) ( ((a)>(b)) ? (a) : (b) )
-#define MIN(a,b) ( ((a)<(b)) ? (a) : (b) )
-char *malloc();
static void hpglText();
static void hpglSeg();
|