cleanup some reoccuring function prototypes

This commit is contained in:
rlar 2011-06-22 17:06:40 +00:00
parent 82d05be244
commit aa0b602b87
7 changed files with 13 additions and 7 deletions

View File

@ -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 ,

View File

@ -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"

View File

@ -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);

View File

@ -4,6 +4,7 @@
#include <fteext.h>
#include "pvec.h"
#include "dimens.h"
void
pvec(struct dvec *d)

View File

@ -11,6 +11,7 @@ $Id$
#include "ngspice.h"
#include "cpdefs.h"
#include "ftedefs.h"
#include "dimens.h"
#include "dvec.h"
#include "rawfile.h"

View File

@ -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"

View File

@ -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 */