aboutsummaryrefslogtreecommitdiff
path: root/src/lib/tsearch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tsearch.h')
-rw-r--r--src/lib/tsearch.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/tsearch.h b/src/lib/tsearch.h
index aa186495..0cfe16a7 100644
--- a/src/lib/tsearch.h
+++ b/src/lib/tsearch.h
@@ -14,22 +14,22 @@ extern "C" {
14#endif /* __cplusplus */ 14#endif /* __cplusplus */
15 15
16 16
17void * 17void *
18tdelete (const void * __restrict, 18 tdelete (const void *__restrict,
19 void ** __restrict, 19 void **__restrict,
20 int (*)(const void *, const void *)); 20 int (*)(const void *, const void *));
21 21
22 22
23void * 23void *
24tfind (const void *, 24 tfind (const void *,
25 void * const *, 25 void *const *,
26 int (*)(const void *, const void *)); 26 int (*)(const void *, const void *));
27 27
28 28
29void * 29void *
30tsearch (const void *, 30 tsearch (const void *,
31 void **, 31 void **,
32 int (*)(const void *, const void *)); 32 int (*)(const void *, const void *));
33 33
34#if defined(__cplusplus) 34#if defined(__cplusplus)
35}; 35};