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

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

Diff for /src/lib/libc/gen/pwcache.c between version 1.5 and 1.5.4.1

version 1.5, 1995/05/13 06:58:23 version 1.5.4.1, 1996/09/19 20:03:29
Line 41  static char rcsid[] = "$NetBSD$";
Line 41  static char rcsid[] = "$NetBSD$";
 #endif  #endif
 #endif /* LIBC_SCCS and not lint */  #endif /* LIBC_SCCS and not lint */
   
   #include "namespace.h"
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <grp.h>  #include <grp.h>
Line 49  static char rcsid[] = "$NetBSD$";
Line 50  static char rcsid[] = "$NetBSD$";
 #include <string.h>  #include <string.h>
 #include <utmp.h>  #include <utmp.h>
   
   #ifdef __weak_alias
   __weak_alias(user_from_uid,_user_from_uid);
   __weak_alias(group_from_gid,_group_from_gid);
   #endif
   
 #define NCACHE  64                      /* power of 2 */  #define NCACHE  64                      /* power of 2 */
 #define MASK    NCACHE - 1              /* bits to store with */  #define MASK    NCACHE - 1              /* bits to store with */
   

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

CVSweb <webmaster@jp.NetBSD.org>