1306196Sjkim/*-
2110010Smarkm * Copyright (c) 2007 Semihalf, Rafal Jaworowski <raj@semihalf.com>
3110010Smarkm * All rights reserved.
4142429Snectar *
5110010Smarkm * Redistribution and use in source and binary forms, with or without
6110010Smarkm * modification, are permitted provided that the following conditions
7110010Smarkm * are met:
8110010Smarkm * 1. Redistributions of source code must retain the above copyright
9110010Smarkm *    notice, this list of conditions and the following disclaimer.
10110010Smarkm * 2. Redistributions in binary form must reproduce the above copyright
11110010Smarkm *    notice, this list of conditions and the following disclaimer in the
12110010Smarkm *    documentation and/or other materials provided with the distribution.
13110010Smarkm *
14110010Smarkm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15110010Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16110010Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17110010Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18110010Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19110010Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20215698Ssimon * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21215698Ssimon * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22215698Ssimon * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23215698Ssimon * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24215698Ssimon * SUCH DAMAGE.
25110010Smarkm */
26110010Smarkm
27110010Smarkm#include <sys/cdefs.h>
28110010Smarkm__FBSDID("$FreeBSD$");
29110010Smarkm
30110010Smarkm#include <stand.h>
31110010Smarkm#include "glue.h"
32110010Smarkm
33110010Smarkmvoid
34110010Smarkmexit(int code)
35110010Smarkm{
36110010Smarkm
37110010Smarkm	ub_reset();
38110010Smarkm}
39110010Smarkm