Commit b6473f87 b6473f870880faba0ff8053da4c144926a389c8e by Sergey Poznyakoff

use __PMT in typedef

1 parent 2dde618f
......@@ -33,7 +33,7 @@ extern int list_count __P ((list_t, size_t *pcount));
extern int list_remove __P ((list_t, void *item));
extern int list_get __P ((list_t, size_t _index, void **pitem));
typedef int list_action_t __P ((void* item, void* cbdata));
typedef int list_action_t __PMT ((void* item, void* cbdata));
extern int list_do __P ((list_t list, list_action_t * action, void *cbdata));
......