aboutsummaryrefslogtreecommitdiff
path: root/src/graph
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-10-26 03:12:00 +0000
committerdos-reis <gdr@axiomatics.org>2008-10-26 03:12:00 +0000
commit8906ae4ab9656413fb58db32f2abee8fbf99365e (patch)
treead32f933c15679160be5fc4525cfe98d23dad484 /src/graph
parentcc6e79c8eb015e0ed3df01ec9e3ba5610dfbe10f (diff)
downloadopen-axiom-8906ae4ab9656413fb58db32f2abee8fbf99365e.tar.gz
* clef/edible.c: #include "cfuns.h" for oa_getenv use.
* graph/Gdraws/Gfun.c: Likewise. * graph/view2D/control2d.c: Likewise. * graph/view2D/main2d.c: Likewise. * graph/view2D/process2d.c: Likewise. * graph/view3D/main3d.c: Likewise. * graph/view3D/process3d.c: Likewise. * graph/viewAlone/spoon2D.c: Likewise. * graph/viewAlone/spoonComp.c: Likewise. * graph/viewman/fun2D.c: Likewise. * graph/viewman/fun3D.c: Likewise. * hyper/extent2.c: Likewise. * hyper/hthits.c: Likewise. * hyper/htinp.c: Likewise. * hyper/initx.c: Likewise. * hyper/lex.c: Likewise. * hyper/parse-types.c: Likewise. * hyper/spadint.c: Likewise. * hyper/titlebar.c: Likewise. * lib/fnct_key.c: Likewise. * sman/sman.c: Likewise.
Diffstat (limited to 'src/graph')
-rw-r--r--src/graph/Gdraws/Gfun.c1
-rw-r--r--src/graph/view2D/control2d.c1
-rw-r--r--src/graph/view2D/main2d.c1
-rw-r--r--src/graph/view2D/process2d.c1
-rw-r--r--src/graph/view3D/main3d.c1
-rw-r--r--src/graph/view3D/process3d.c1
-rw-r--r--src/graph/viewAlone/spoon2D.c1
-rw-r--r--src/graph/viewAlone/spoonComp.c1
-rw-r--r--src/graph/viewman/fun2D.c1
-rw-r--r--src/graph/viewman/fun3D.c1
10 files changed, 10 insertions, 0 deletions
diff --git a/src/graph/Gdraws/Gfun.c b/src/graph/Gdraws/Gfun.c
index 117ebbda..7052256b 100644
--- a/src/graph/Gdraws/Gfun.c
+++ b/src/graph/Gdraws/Gfun.c
@@ -46,6 +46,7 @@
#include "hash.h"
#include "Gfun.H1"
+#include "cfuns.h"
/*
diff --git a/src/graph/view2D/control2d.c b/src/graph/view2D/control2d.c
index 8e3b82ad..eb9249b9 100644
--- a/src/graph/view2D/control2d.c
+++ b/src/graph/view2D/control2d.c
@@ -50,6 +50,7 @@
#include "Gfun.H1"
#include "XSpadFill.H1"
#include "util.H1"
+#include "cfuns.h"
#include "mouse11.bitmap"
diff --git a/src/graph/view2D/main2d.c b/src/graph/view2D/main2d.c
index beb6e602..c5fe7070 100644
--- a/src/graph/view2D/main2d.c
+++ b/src/graph/view2D/main2d.c
@@ -49,6 +49,7 @@
#include "Gfun.H1"
#include "util.H1"
#include "XSpadFill.H1"
+#include "cfuns.h"
/**********************/
diff --git a/src/graph/view2D/process2d.c b/src/graph/view2D/process2d.c
index e85d7721..ee21886f 100644
--- a/src/graph/view2D/process2d.c
+++ b/src/graph/view2D/process2d.c
@@ -52,6 +52,7 @@
#include "util.H1"
#include "Gfun.H1"
#include "XSpadFill.H1"
+#include "cfuns.h"
static int doit=0; /* globish variable for picking/dropping/clearing - all sorts of
diff --git a/src/graph/view3D/main3d.c b/src/graph/view3D/main3d.c
index 4197daf6..f55cc257 100644
--- a/src/graph/view3D/main3d.c
+++ b/src/graph/view3D/main3d.c
@@ -52,6 +52,7 @@
#include "XSpadFill.H1"
#include "XShade.H1"
#include "all_3d.H1"
+#include "cfuns.h"
/**********************/
/** global variables **/
diff --git a/src/graph/view3D/process3d.c b/src/graph/view3D/process3d.c
index 211760ba..1af50a8b 100644
--- a/src/graph/view3D/process3d.c
+++ b/src/graph/view3D/process3d.c
@@ -60,6 +60,7 @@
#include "XShade.H1"
#include "XSpadFill.H1"
#include "all_3d.H1"
+#include "cfuns.h"
#define inside(A,B) (((XButtonEvent *)event)->x >= A && \
((XButtonEvent *)event)->x <= B)
diff --git a/src/graph/viewAlone/spoon2D.c b/src/graph/viewAlone/spoon2D.c
index 9ad458d8..d19b008f 100644
--- a/src/graph/viewAlone/spoon2D.c
+++ b/src/graph/viewAlone/spoon2D.c
@@ -44,6 +44,7 @@
#include "util.H1"
+#include "cfuns.h"
#include "all_alone.H1"
/* #define huhDEBUG */
diff --git a/src/graph/viewAlone/spoonComp.c b/src/graph/viewAlone/spoonComp.c
index 3c828a44..8c8dcd0e 100644
--- a/src/graph/viewAlone/spoonComp.c
+++ b/src/graph/viewAlone/spoonComp.c
@@ -44,6 +44,7 @@
#include "mode.h"
#include "util.H1"
+#include "cfuns.h"
#include "all_alone.H1"
diff --git a/src/graph/viewman/fun2D.c b/src/graph/viewman/fun2D.c
index ed49772f..7027a40b 100644
--- a/src/graph/viewman/fun2D.c
+++ b/src/graph/viewman/fun2D.c
@@ -50,6 +50,7 @@
#include "fun2D.H1"
#include "readView.H1"
#include "make2D.H1"
+#include "cfuns.h"
#define writeEach
diff --git a/src/graph/viewman/fun3D.c b/src/graph/viewman/fun3D.c
index 638641e9..f277a442 100644
--- a/src/graph/viewman/fun3D.c
+++ b/src/graph/viewman/fun3D.c
@@ -50,6 +50,7 @@
#include "fun3D.H1"
#include "make3D.H1"
#include "readView.H1"
+#include "cfuns.h"
void
funView3D(int viewCommand)