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,8 +1,8 @@
# $NetBSD: Makefile,v 1.22 2014/10/09 14:06:56 wiz Exp $
# $NetBSD: Makefile,v 1.23 2015/09/07 06:43:48 dsainty Exp $
#
DISTNAME= pdksh-5.2.14
PKGREVISION= 5
PKGREVISION= 6
CATEGORIES= shells
MASTER_SITES= ftp://ftp.cs.mun.ca/pub/pdksh/ \
http://gd.tuwien.ac.at/utils/shells/pdksh/ \

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 */
};