In version 1.8 I botched findval()'s type, fix.

This commit is contained in:
Stefan Farfeleder 2005-09-02 21:51:18 +00:00
parent de4ad3826b
commit 848b3d0fd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149741

View File

@ -161,7 +161,7 @@ char *xstrdup(const char *str);
#define STOREVAL(list,item) \
storeval(list,item)
definition *findval(list *lst, char *val, int (*cmp)(char *, char *));
definition *findval(list *lst, char *val, int (*cmp)(definition *, char *));
#define FINDVAL(list,item,finder) \
findval(list, item, finder)