Import of pkgsrc-2015Q3

This commit is contained in:
2015-10-03 03:37:01 -07:00
committed by Lionel Sambuc
parent f641581404
commit 9d819b6d54
7578 changed files with 228314 additions and 80018 deletions

View File

@@ -1,4 +1,4 @@
/* $NetBSD: table.h,v 1.2 2008/05/31 16:47:37 tnn Exp $ */
/* $NetBSD: table.h,v 1.3 2015/09/07 06:43:48 dsainty Exp $ */
/*
* generic hashed associative table for commands and variables.
@@ -6,7 +6,7 @@
struct table {
Area *areap; /* area to allocate entries */
short size, nfree; /* hash size (always 2^^n), free entries */
int size, nfree; /* hash size (always 2^^n), free entries */
struct tbl **tbls; /* hashed table items */
};