diff --git a/src/frontend/com_compose.c b/src/frontend/com_compose.c index cd8e83171..467afa156 100644 --- a/src/frontend/com_compose.c +++ b/src/frontend/com_compose.c @@ -7,10 +7,10 @@ #include #include #include +#include #include "com_compose.h" #include "completion.h" -#include "streams.h" /* Copy the data from a vector into a buffer with larger dimensions. */ static void diff --git a/src/frontend/com_display.c b/src/frontend/com_display.c index 5194d57d5..1435f44db 100644 --- a/src/frontend/com_display.c +++ b/src/frontend/com_display.c @@ -2,9 +2,9 @@ #include #include #include +#include #include "com_display.h" -#include "streams.h" #include "plotting/plotting.h" #include "plotting/pvec.h" diff --git a/src/frontend/com_setscale.c b/src/frontend/com_setscale.c index 050368db4..312ddf3e1 100644 --- a/src/frontend/com_setscale.c +++ b/src/frontend/com_setscale.c @@ -2,6 +2,7 @@ #include #include +#include "vectors.h" #include "com_setscale.h" #include "plotting/plotting.h" #include "plotting/pvec.h" diff --git a/src/frontend/cpitf.c b/src/frontend/cpitf.c index 7758caf14..6bd878496 100644 --- a/src/frontend/cpitf.c +++ b/src/frontend/cpitf.c @@ -10,6 +10,8 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group #include "fteparse.h" #include "cpitf.h" +#include + #include "completion.h" /* Set some standard variables and aliases, etc, and init the ccom stuff. */ diff --git a/src/frontend/doplot.c b/src/frontend/doplot.c index 59e38bdff..1a3a98588 100644 --- a/src/frontend/doplot.c +++ b/src/frontend/doplot.c @@ -19,6 +19,8 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group #include "fteext.h" #include "doplot.h" +#include "plotting/agraf.h" +#include "plotting/graf.h" extern double *ft_SMITHminmax(struct dvec *v, bool yval);