[BACK]Return to tfind.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / stdlib

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/stdlib/tfind.c between version 1.4 and 1.5

version 1.4, 2005/03/22 20:13:42 version 1.5, 2005/03/23 08:16:53
Line 28  tfind(vkey, vrootp, compar)
Line 28  tfind(vkey, vrootp, compar)
         void * const *vrootp;           /* address of the tree root */          void * const *vrootp;           /* address of the tree root */
         int (*compar) __P((const void *, const void *));          int (*compar) __P((const void *, const void *));
 {  {
         node_t **rootp = (node_t **)vrootp;          node_t * const *rootp = (node_t * const*)vrootp;
   
         _DIAGASSERT(vkey != NULL);          _DIAGASSERT(vkey != NULL);
         _DIAGASSERT(compar != NULL);          _DIAGASSERT(compar != NULL);

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb <webmaster@jp.NetBSD.org>