1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dbtoman/instant: fix some implicit-function-declaration warnings

This commit is contained in:
Jon Trulson 2021-11-11 10:11:38 -07:00
parent bfd694e8c7
commit cd66617653
2 changed files with 8 additions and 4 deletions

View file

@ -99,7 +99,8 @@
#endif
/* forward references */
void RememberTransSpec(Trans_t *, int);
void RememberTransSpec(Trans_t *, int);
void ExpandVariables(char *in, char *out, Element_t *e);
/* ______________________________________________________________________ */
/* Read the translation specs from the input file, storing in memory.

View file

@ -94,9 +94,12 @@ static char *each_A = 0; /* last seen _eachatt */
static char *each_C = 0; /* last seen _eachcon */
/* forward references */
void ChaseIDRefs(Element_t *, char *, char *, FILE *);
void Find(Element_t *, int, char **, FILE *);
void GetIDREFnames();
void ChaseIDRefs(Element_t *, char *, char *, FILE *);
void Find(Element_t *, int, char **, FILE *);
void GetIDREFnames();
void ExpandVariables(char *in, char *out, Element_t *e);
void CALStable(Element_t *e, FILE *fp, char **av, int ac);
/* ______________________________________________________________________ */
/* Handle "special" variable - read file, run command, do action, etc.