mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
gnu search.h has struct qelem...
This commit is contained in:
parent
4a08c85111
commit
319df20bc9
@ -33,6 +33,13 @@ void *tfind(const void *, void *const *, int(*)(const void *, const void *));
|
||||
void *tsearch(const void *, void **, int (*)(const void *, const void *));
|
||||
void twalk(const void *, void (*)(const void *, VISIT, int));
|
||||
|
||||
#ifdef _GNU_SOURCE
|
||||
struct qelem {
|
||||
struct qelem *q_forw, *q_back;
|
||||
char q_data[1];
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user