14Srgrimes/* exit() function.
24Srgrimes   Copyright (C) 1995, 2001 Free Software Foundation, Inc.
34Srgrimes
44Srgrimes   This program is free software; you can redistribute it and/or modify
54Srgrimes   it under the terms of the GNU General Public License as published by
64Srgrimes   the Free Software Foundation; either version 2, or (at your option)
74Srgrimes   any later version.
84Srgrimes
94Srgrimes   This program is distributed in the hope that it will be useful,
104Srgrimes   but WITHOUT ANY WARRANTY; without even the implied warranty of
114Srgrimes   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
124Srgrimes   GNU General Public License for more details.
134Srgrimes
144Srgrimes   You should have received a copy of the GNU General Public License
154Srgrimes   along with this program; if not, write to the Free Software Foundation,
164Srgrimes   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
174Srgrimes
184Srgrimes#ifndef _EXIT_H
194Srgrimes#define _EXIT_H
204Srgrimes
214Srgrimes/* Get exit() declaration.  */
224Srgrimes#include <stdlib.h>
234Srgrimes
244Srgrimes/* Some systems do not define EXIT_*, even with STDC_HEADERS.  */
254Srgrimes#ifndef EXIT_SUCCESS
264Srgrimes# define EXIT_SUCCESS 0
274Srgrimes#endif
284Srgrimes#ifndef EXIT_FAILURE
294Srgrimes# define EXIT_FAILURE 1
304Srgrimes#endif
314Srgrimes
324Srgrimes#endif /* _EXIT_H */
334Srgrimes