-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmachine.h
More file actions
28 lines (21 loc) · 789 Bytes
/
machine.h
File metadata and controls
28 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* The Original of 'machine.h' has been lost in transit. This is then */
/* (hopefully) a correct replacement. */
/* Select Double Precision... */
#define DOUBLEPRECISION
#ifdef DOUBLEPRECISION
#define REAL double
#else
#define REAL float
#endif
/* Include the following line to generate a file of Hewlett-Packard Graphics
Language. This is written to the file 'hpgl.p' */
/* #define HPGL */
/* Include the following line to generate a file for use with the O'Reilly
Hewlett-Packard Printer */
/* #define ORIHPGL */
/* Include the following line to use an Iris Workstation */
/* #define IRIS */
/* Include the following line to generate a Postscript file */
#define POSTSCRIPT
/* Include the following line to use 'X' windows */
#define X_WINDOWS