/* exit() function.1Copyright (C) 1995, 2001 Free Software Foundation, Inc.23This program is free software; you can redistribute it and/or modify4it under the terms of the GNU General Public License as published by5the Free Software Foundation; either version 2, or (at your option)6any later version.78This program is distributed in the hope that it will be useful,9but WITHOUT ANY WARRANTY; without even the implied warranty of10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11GNU General Public License for more details.1213You should have received a copy of the GNU General Public License14along with this program; if not, write to the Free Software Foundation,15Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */1617#ifndef _EXIT_H18#define _EXIT_H1920/* Get exit() declaration. */21#include <stdlib.h>2223/* Some systems do not define EXIT_*, even with STDC_HEADERS. */24#ifndef EXIT_SUCCESS25# define EXIT_SUCCESS 026#endif27#ifndef EXIT_FAILURE28# define EXIT_FAILURE 129#endif3031#endif /* _EXIT_H */323334