svn commit: r329221 - head/bin/sh

Bryan Drewery bdrewery at FreeBSD.org
Tue Feb 13 16:48:58 UTC 2018


Author: bdrewery
Date: Tue Feb 13 16:48:57 2018
New Revision: 329221
URL: https://svnweb.freebsd.org/changeset/base/329221

Log:
  Allow overriding VTABSIZE at compile-time.
  
  Reviewed by:	jilles
  Differential Revision:	https://reviews.freebsd.org/D14339

Modified:
  head/bin/sh/var.c

Modified: head/bin/sh/var.c
==============================================================================
--- head/bin/sh/var.c	Tue Feb 13 16:26:06 2018	(r329220)
+++ head/bin/sh/var.c	Tue Feb 13 16:48:57 2018	(r329221)
@@ -71,7 +71,9 @@ __FBSDID("$FreeBSD$");
 #endif
 
 
+#ifndef VTABSIZE
 #define VTABSIZE 39
+#endif
 
 
 struct varinit {


More information about the svn-src-head mailing list