1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:47:46 +00:00

LibC: Stub out tdelete

This commit is contained in:
Tim Schumacher 2021-10-14 21:21:25 +02:00 committed by Brian Gianforcaro
parent 4b423a5ec7
commit a66c358c52
2 changed files with 7 additions and 0 deletions

View file

@ -17,6 +17,7 @@ typedef enum {
void* tsearch(const void*, void**, int (*)(const void*, const void*));
void* tfind(const void*, void* const*, int (*)(const void*, const void*));
void* tdelete(const void*, void**, int (*)(const void*, const void*));
void twalk(const void*, void (*)(const void*, VISIT, int));
__END_DECLS