diff options
Diffstat (limited to 'newlib/libc/search/tdelete.c')
-rw-r--r-- | newlib/libc/search/tdelete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/search/tdelete.c b/newlib/libc/search/tdelete.c index e756599..b607b54 100644 --- a/newlib/libc/search/tdelete.c +++ b/newlib/libc/search/tdelete.c @@ -27,8 +27,8 @@ __RCSID("$NetBSD: tdelete.c,v 1.2 1999/09/16 11:45:37 lukem Exp $"); /* delete node with given key */ void * _DEFUN(tdelete, (vkey, vrootp, compar), - const void *vkey _AND /* key to be deleted */ - void **vrootp _AND /* address of the root of tree */ + const void *__restrict vkey _AND /* key to be deleted */ + void **__restrict vrootp _AND /* address of the root of tree */ int (*compar)(const void *, const void *)) { node_t **rootp = (node_t **)vrootp; |