1*f7c3db25SMark Johnston /* 2*f7c3db25SMark Johnston * This file and its contents are supplied under the terms of the 3*f7c3db25SMark Johnston * Common Development and Distribution License ("CDDL"), version 1.0. 4*f7c3db25SMark Johnston * You may only use this file in accordance with the terms of version 5*f7c3db25SMark Johnston * 1.0 of the CDDL. 6*f7c3db25SMark Johnston * 7*f7c3db25SMark Johnston * A full copy of the text of the CDDL should have accompanied this 8*f7c3db25SMark Johnston * source. A copy of the CDDL is also available via the Internet at 9*f7c3db25SMark Johnston * http://www.illumos.org/license/CDDL. 10*f7c3db25SMark Johnston */ 11*f7c3db25SMark Johnston 12*f7c3db25SMark Johnston /* 13*f7c3db25SMark Johnston * Copyright (c) 2015, Joyent, Inc. All rights reserved. 14*f7c3db25SMark Johnston */ 15*f7c3db25SMark Johnston 16*f7c3db25SMark Johnston struct mrbig { 17*f7c3db25SMark Johnston char toomany[100000]; 18*f7c3db25SMark Johnston }; 19*f7c3db25SMark Johnston 20*f7c3db25SMark Johnston this struct mrbig mrbig; 21*f7c3db25SMark Johnston 22*f7c3db25SMark Johnston BEGIN 23*f7c3db25SMark Johnston { 24*f7c3db25SMark Johnston this->mrbig.toomany[0] = '!'; 25*f7c3db25SMark Johnston exit(0); 26*f7c3db25SMark Johnston } 27