remove prototypes, avoid redeclarations

This commit is contained in:
rlar 2010-10-16 15:40:48 +00:00
parent c140c3d532
commit fe2a308698
2 changed files with 5 additions and 16 deletions

View File

@ -1,3 +1,7 @@
2010-10-16 Robert Larice
* src/include/ngspice.h :
remove prototypes, avoid redeclarations
2010-10-16 Holger Vogt 2010-10-16 Holger Vogt
* examples/control_structs/s-param.cir new example * examples/control_structs/s-param.cir new example
* commands.c, postcoms.h, postcoms.c, rawfile.h, rawfile.c * commands.c, postcoms.h, postcoms.c, rawfile.h, rawfile.c

View File

@ -200,26 +200,11 @@
#define HUGE HUGE_VAL #define HUGE HUGE_VAL
#endif #endif
extern char *gettok(char **s);
extern char *gettok_noparens(char **s); extern char *gettok_noparens(char **s);
extern char *gettok_node(char **s); extern char *gettok_node(char **s);
extern char *gettok_iv(char **s); extern char *gettok_iv(char **s);
extern int get_l_paren(char **s); extern int get_l_paren(char **s);
extern int get_r_paren(char **s); extern int get_r_paren(char **s);
extern void appendc(char *s, char c);
extern int scannum(char *str);
extern int ciprefix(register char *p, register char *s);
extern int cieq(register char *p, register char *s);
extern void strtolower(char *str);
extern char *tildexpand(char *str);
extern char *canonicalize_pathname(char *path);
extern char *absolute_pathname(char *str, char *dot_path);
extern char *copy(const char *str);
extern int prefix(char *p, char *str);
extern int substring(char *sub, char *str);
extern void cp_printword(char *str, FILE *fp);
/* Some external variables */ /* Some external variables */