1*9dc70af8SWarner Losh /*- 2*9dc70af8SWarner Losh * Copyright (c) 2007 Semihalf, Rafal Jaworowski <raj@semihalf.com> 3*9dc70af8SWarner Losh * All rights reserved. 4*9dc70af8SWarner Losh * 5*9dc70af8SWarner Losh * Redistribution and use in source and binary forms, with or without 6*9dc70af8SWarner Losh * modification, are permitted provided that the following conditions 7*9dc70af8SWarner Losh * are met: 8*9dc70af8SWarner Losh * 1. Redistributions of source code must retain the above copyright 9*9dc70af8SWarner Losh * notice, this list of conditions and the following disclaimer. 10*9dc70af8SWarner Losh * 2. Redistributions in binary form must reproduce the above copyright 11*9dc70af8SWarner Losh * notice, this list of conditions and the following disclaimer in the 12*9dc70af8SWarner Losh * documentation and/or other materials provided with the distribution. 13*9dc70af8SWarner Losh * 14*9dc70af8SWarner Losh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*9dc70af8SWarner Losh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*9dc70af8SWarner Losh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*9dc70af8SWarner Losh * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*9dc70af8SWarner Losh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*9dc70af8SWarner Losh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*9dc70af8SWarner Losh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*9dc70af8SWarner Losh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*9dc70af8SWarner Losh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*9dc70af8SWarner Losh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*9dc70af8SWarner Losh * SUCH DAMAGE. 25*9dc70af8SWarner Losh */ 26*9dc70af8SWarner Losh 27*9dc70af8SWarner Losh #include <sys/cdefs.h> 28*9dc70af8SWarner Losh __FBSDID("$FreeBSD$"); 29*9dc70af8SWarner Losh 30*9dc70af8SWarner Losh #include <stand.h> 31*9dc70af8SWarner Losh #include "glue.h" 32*9dc70af8SWarner Losh 33*9dc70af8SWarner Losh void 34*9dc70af8SWarner Losh exit(int code) 35*9dc70af8SWarner Losh { 36*9dc70af8SWarner Losh 37*9dc70af8SWarner Losh ub_reset(); 38*9dc70af8SWarner Losh } 39