Line | |
---|
1 | /* Miscellaneous error functions
|
---|
2 |
|
---|
3 | Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
---|
4 |
|
---|
5 | This program is free software; you can redistribute it and/or modify it
|
---|
6 | under the terms of the GNU General Public License as published by the
|
---|
7 | Free Software Foundation; either version 2, or (at your option) any later
|
---|
8 | version.
|
---|
9 |
|
---|
10 | This program is distributed in the hope that it will be useful, but
|
---|
11 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
13 | Public License for more details.
|
---|
14 |
|
---|
15 | You should have received a copy of the GNU General Public License along
|
---|
16 | with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
17 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
---|
18 |
|
---|
19 | #include <system.h>
|
---|
20 | #include <paxlib.h>
|
---|
21 |
|
---|
22 | int exit_status = PAXEXIT_SUCCESS;
|
---|
23 |
|
---|
24 | void
|
---|
25 | pax_exit ()
|
---|
26 | {
|
---|
27 | exit (exit_status);
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.