X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fsearch.h;h=7c4fc583c762956e906f232ec429ad6ff52e03b9;hp=f1246adef2fec6ce030ecbea0b090dee88064dab;hb=b5289fd749bc4d2637610d712f8fe650f214f1d5;hpb=febbd12d00883a716a9edca25011f8aa306b859b diff --git a/include/search.h b/include/search.h index f1246ade..7c4fc583 100644 --- a/include/search.h +++ b/include/search.h @@ -33,6 +33,15 @@ 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]; +}; + +void tdestroy(void *, void (*)(void *)); +#endif + #ifdef __cplusplus } #endif