Kaydet (Commit) 3e7b2bfc authored tarafından Cyril Roelandt's avatar Cyril Roelandt Kaydeden (comit) Michael Meeks

Fixing prototypes in soltools/mkdepend/ .

üst b41e01d9
...@@ -153,13 +153,15 @@ char *malloc(); ...@@ -153,13 +153,15 @@ char *malloc();
char *realloc(); char *realloc();
#endif #endif
char *copy(); char *copy(char *);
char *base_name(); char *base_name(char *);
char *get_line(); char *get_line(struct filepointer *);
char *isdefined(); char *isdefined(char *);
struct filepointer *getfile(); struct filepointer *getfile(char *);
struct inclist *newinclude(); struct inclist *newinclude(register char *newfile,
struct inclist *inc_path(); register char *incstring);
struct inclist *inc_path(char *, char *, boolean,
struct IncludesCollection *);
void define( char *def, struct symhash **symbols ); void define( char *def, struct symhash **symbols );
void hash_define(char *name, char * val, struct symhash **symbols); void hash_define(char *name, char * val, struct symhash **symbols);
......
...@@ -72,6 +72,6 @@ typedef struct _if_parser { ...@@ -72,6 +72,6 @@ typedef struct _if_parser {
char *data; char *data;
} IfParser; } IfParser;
const char *ParseIfExpression (/* IfParser *, const char *, int * */); const char *ParseIfExpression (IfParser *, const char *, int *);
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment