* libltdl/slist.h (SListCallback): Fix missing type.

This commit is contained in:
Andreas Schwab 2004-08-30 11:42:21 +00:00 committed by Gary V. Vaughan
parent 81b0f11bc4
commit 7161656f9a
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2004-08-30 Andreas Schwab <schwab@suse.de>
* libltdl/slist.h (SListCallback): Fix missing type.
* config/ltmain.in: Accept --mode=relink.
2004-08-29 Gary V. Vaughan <gary@gnu.org>

View File

@ -51,7 +51,7 @@ typedef struct slist {
} SList;
typedef void * SListCompare (const SList *node, const void *userdata);
typedef int SListCallback (const SList *node, const *userdata);
typedef int SListCallback (const SList *node, const void *userdata);
LT_SCOPE SList *slist_new (const void *userdata);
LT_SCOPE SList *slist_delete (SList *head, void (*delete) (void *data));