/*--------------------------------*-C-*---------------------------------*
 * File:	rxvt.h
 *
 * Copyright 1992 John Bovey, University of Kent at Canterbury.
 *
 * You can do what you like with this source code as long as
 * you don't try to make money out of it and you include an
 * unaltered copy of this message (including the copyright).
 *
 * Additional modifications by mj olesen <olesen@me.QueensU.CA>
 * No additional restrictions are applied.
 *----------------------------------------------------------------------*/
#ifndef _RXVT_H
#define _RXVT_H

#include <config.h>
#ifdef AMIGA
#define VERSION "2.18beta"
#else
#include "VERSION"
#endif
#include "feature.h"

#include <assert.h>
#include <stdio.h>

/* STDC_HEADERS
 * don't check for these using configure, since we need them regardless.
 * if you don't have them -- figure a workaround.
 *
 * Sun is often reported as not being STDC_HEADERS, but it's not true
 * for our purposes and only generates spurious bug reports.
 */
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

#ifndef EXIT_SUCCESS		/* missing from <stdlib.h> */
# define EXIT_SUCCESS	0	/* exit function success */
# define EXIT_FAILURE	1	/* exit function failure */
#endif

#endif	/* whole file */
/*----------------------- end-of-file (C header) -----------------------*/
