mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
4c9695fa8e
This patch corrects some conformtest expectations for search.h for XPG3. Tested for x86_64 and x86. * conform/data/search.h-data (insque): Do not expect for [XPG3]. (remque): Likewise. * conform/Makefile (test-xfail-XPG3/search.h/conform): Remove variable.
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008
|
|
type ENTRY
|
|
type {struct entry}
|
|
element {struct entry} {char*} key
|
|
element {struct entry} {void*} data
|
|
|
|
type ACTION
|
|
constant FIND
|
|
constant ENTER
|
|
|
|
type VISIT
|
|
constant preorder
|
|
constant postorder
|
|
constant endorder
|
|
constant leaf
|
|
|
|
function int hcreate (size_t)
|
|
function void hdestroy (void)
|
|
function {ENTRY*} hsearch (ENTRY, ACTION)
|
|
#ifndef XPG3
|
|
function void insque (void*, void*)
|
|
#endif
|
|
function {void*} lfind (const void*, const void*, size_t*, size_t, int (*)(const void*, const void*))
|
|
function {void*} lsearch (const void*, void*, size_t*, size_t, int (*)(const void*, const void*))
|
|
#ifndef XPG3
|
|
function void remque (void*)
|
|
#endif
|
|
function {void*} tdelete (const void*, void**, int(*)(const void*, const void*))
|
|
function {void*} tfind (const void*, void*const*, int(*)(const void*, const void*))
|
|
function {void*} tsearch (const void*, void**, int(*)(const void*, const void*))
|
|
function void twalk (const void*, void (*) (const void*, VISIT, int))
|
|
|
|
allow *_t
|
|
#endif
|