From 42d917fdb845cd057e48f39353ea117e318bad46 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 16 Jan 2016 18:30:57 +0000 Subject: [PATCH] add nesting_limit --- usr.bin/m4/extern.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/m4/extern.h b/usr.bin/m4/extern.h index ccc3a9eda709..1cb9de13da9e 100644 --- a/usr.bin/m4/extern.h +++ b/usr.bin/m4/extern.h @@ -1,5 +1,5 @@ /* $OpenBSD: extern.h,v 1.49 2009/10/14 17:19:47 sthen Exp $ */ -/* $NetBSD: extern.h,v 1.18 2016/01/16 16:57:29 christos Exp $ */ +/* $NetBSD: extern.h,v 1.19 2016/01/16 18:30:57 christos Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -175,6 +175,7 @@ extern int maxwraps; /* size of m4wraps array */ extern int wrapindex; /* current index in m4wraps */ extern int fatal_warnings; /* exit on warning */ extern int quiet; /* no warnings */ +extern int nesting_limit; /* macro expansion nesting limit */ #ifndef REAL_FREEZE extern FILE *freezef; /* copy of input */ extern int thawing; /* don't process includes during thaw */