mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
* libltdl/slist.h (SListCallback): Fix missing type.
This commit is contained in:
parent
81b0f11bc4
commit
7161656f9a
@ -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>
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user