1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2005,2008 Oracle.  All rights reserved.
5 *
6 * $Id: os_abort.c,v 1.9 2008/01/08 20:58:44 bostic Exp $
7 */
8
9#include "db_config.h"
10
11#include "db_int.h"
12
13/*
14 * __os_abort --
15 */
16void
17__os_abort(env)
18	ENV *env;
19{
20	AEEApplet *app;
21
22	COMPQUIET(env, NULL);
23
24	app = (AEEApplet *)GETAPPINSTANCE();
25	ISHELL_CloseApplet(app->m_pIShell, FALSE);
26
27	/* NOTREACHED */
28}
29