Fixing prototypes in soltools/mkdepend/ .

This commit is contained in:
Cyril Roelandt 2011-04-26 08:44:57 +02:00 committed by Michael Meeks
parent b41e01d92f
commit 3e7b2bfce6
2 changed files with 10 additions and 8 deletions

View file

@ -153,13 +153,15 @@ char *malloc();
char *realloc();
#endif
char *copy();
char *base_name();
char *get_line();
char *isdefined();
struct filepointer *getfile();
struct inclist *newinclude();
struct inclist *inc_path();
char *copy(char *);
char *base_name(char *);
char *get_line(struct filepointer *);
char *isdefined(char *);
struct filepointer *getfile(char *);
struct inclist *newinclude(register char *newfile,
register char *incstring);
struct inclist *inc_path(char *, char *, boolean,
struct IncludesCollection *);
void define( char *def, struct symhash **symbols );
void hash_define(char *name, char * val, struct symhash **symbols);

View file

@ -72,6 +72,6 @@ typedef struct _if_parser {
char *data;
} IfParser;
const char *ParseIfExpression (/* IfParser *, const char *, int * */);
const char *ParseIfExpression (IfParser *, const char *, int *);
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */