Fix the prototypes by addings some constness. This should have been

committed together with the commit to dir.c:1.48.
This commit is contained in:
Hartmut Brandt 2005-02-22 08:17:05 +00:00
parent bcdbb13a66
commit 6a1865cdbb

View File

@ -63,11 +63,11 @@ void Dir_Expand(char *, struct Lst *, struct Lst *);
char *Dir_FindFile(char *, struct Lst *);
int Dir_MTime(struct GNode *);
void Dir_AddDir(struct Lst *, const char *);
char *Dir_MakeFlags(const char *, struct Lst *);
char *Dir_MakeFlags(const char *, const struct Lst *);
void Dir_ClearPath(struct Lst *);
void Dir_Concat(struct Lst *, struct Lst *);
void Dir_PrintDirectories(void);
void Dir_PrintPath(struct Lst *);
void Dir_PrintPath(const struct Lst *);
void Dir_Destroy(void *);
void *Dir_CopyDir(void *);