diff --git a/ChangeLog b/ChangeLog index 23d978c68..810c76e6f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-06-22 Robert Larice + * src/frontend/commands.c , + * src/frontend/misccoms.h , + * src/frontend/rawfile.c , + * src/frontend/vectors.c , + * src/frontend/plotting/pvec.c , + * src/include/fteext.h : + cleanup some reoccuring function prototypes + 2011-06-22 Robert Larice * src/spicelib/analysis/Makefile.am , * src/spicelib/analysis/ckt.h , diff --git a/src/frontend/commands.c b/src/frontend/commands.c index b041d88d1..47540b60b 100644 --- a/src/frontend/commands.c +++ b/src/frontend/commands.c @@ -39,6 +39,7 @@ #include "commands.h" #include "com_ahelp.h" +#include "com_ghelp.h" #include "com_asciiplot.h" #include "com_compose.h" #include "com_display.h" diff --git a/src/frontend/misccoms.h b/src/frontend/misccoms.h index e6b1e0dd3..29d06419d 100644 --- a/src/frontend/misccoms.h +++ b/src/frontend/misccoms.h @@ -6,7 +6,6 @@ #ifndef MISCCOMS_H_INCLUDED #define MISCCOMS_H_INCLUDED -void com_ghelp(wordlist *wl); void com_quit(wordlist *wl); void com_bug(wordlist *wl); void com_version(wordlist *wl); diff --git a/src/frontend/plotting/pvec.c b/src/frontend/plotting/pvec.c index 0f4ff5742..8eb59f827 100644 --- a/src/frontend/plotting/pvec.c +++ b/src/frontend/plotting/pvec.c @@ -4,6 +4,7 @@ #include #include "pvec.h" +#include "dimens.h" void pvec(struct dvec *d) diff --git a/src/frontend/rawfile.c b/src/frontend/rawfile.c index 0657e48ce..b91841172 100644 --- a/src/frontend/rawfile.c +++ b/src/frontend/rawfile.c @@ -11,6 +11,7 @@ $Id$ #include "ngspice.h" #include "cpdefs.h" #include "ftedefs.h" +#include "dimens.h" #include "dvec.h" #include "rawfile.h" diff --git a/src/frontend/vectors.c b/src/frontend/vectors.c index a230a56c3..4df5dd907 100644 --- a/src/frontend/vectors.c +++ b/src/frontend/vectors.c @@ -17,6 +17,7 @@ $Id$ #include "circuits.h" #include "completion.h" #include "variable.h" +#include "dimens.h" #include "../misc/misc_time.h" #include "vectors.h" #include "plotting/plotting.h" diff --git a/src/include/fteext.h b/src/include/fteext.h index 564b2f1d8..d8d372c8d 100644 --- a/src/include/fteext.h +++ b/src/include/fteext.h @@ -302,10 +302,4 @@ extern void vec_transpose(struct dvec *v); extern bool ft_intrpt; extern bool ft_setflag; -/* dimens.c */ -extern void dimstring(int *data, int length, char *retstring); -extern int atodims(char *p, int *data, int *outlength); -extern void indexstring(int *data, int length, char *retstring); -extern int incindex(int *counts, int numcounts, int *dims, int numdims); - #endif /* FTEext_h */