Blame rcv.h

Packit 272fb1
/*
Packit 272fb1
 * Heirloom mailx - a mail user agent derived from Berkeley Mail.
Packit 272fb1
 *
Packit 272fb1
 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
Packit 272fb1
 */
Packit 272fb1
/*
Packit 272fb1
 * Copyright (c) 1980, 1993
Packit 272fb1
 *	The Regents of the University of California.  All rights reserved.
Packit 272fb1
 *
Packit 272fb1
 * Redistribution and use in source and binary forms, with or without
Packit 272fb1
 * modification, are permitted provided that the following conditions
Packit 272fb1
 * are met:
Packit 272fb1
 * 1. Redistributions of source code must retain the above copyright
Packit 272fb1
 *    notice, this list of conditions and the following disclaimer.
Packit 272fb1
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 272fb1
 *    notice, this list of conditions and the following disclaimer in the
Packit 272fb1
 *    documentation and/or other materials provided with the distribution.
Packit 272fb1
 * 3. All advertising materials mentioning features or use of this software
Packit 272fb1
 *    must display the following acknowledgement:
Packit 272fb1
 *	This product includes software developed by the University of
Packit 272fb1
 *	California, Berkeley and its contributors.
Packit 272fb1
 * 4. Neither the name of the University nor the names of its contributors
Packit 272fb1
 *    may be used to endorse or promote products derived from this software
Packit 272fb1
 *    without specific prior written permission.
Packit 272fb1
 *
Packit 272fb1
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit 272fb1
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 272fb1
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 272fb1
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit 272fb1
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 272fb1
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit 272fb1
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 272fb1
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit 272fb1
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit 272fb1
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit 272fb1
 * SUCH DAMAGE.
Packit 272fb1
 *
Packit 272fb1
 *	Sccsid @(#)rcv.h	2.7 (gritter) 3/4/06
Packit 272fb1
 */
Packit 272fb1
Packit 272fb1
/*
Packit 272fb1
 * Mail -- a mail program
Packit 272fb1
 *
Packit 272fb1
 * This file is included by normal files which want both
Packit 272fb1
 * globals and declarations.
Packit 272fb1
 */
Packit 272fb1
Packit 272fb1
#include "config.h"
Packit 272fb1
Packit 272fb1
#include <sys/types.h>
Packit 272fb1
#include <stdio.h>
Packit 272fb1
#include <stdlib.h>
Packit 272fb1
#include <signal.h>
Packit 272fb1
#include <string.h>
Packit 272fb1
#include <termios.h>
Packit 272fb1
#ifdef	HAVE_ICONV
Packit 272fb1
#include <iconv.h>
Packit 272fb1
#endif	/* HAVE_ICONV */
Packit 272fb1
#ifdef	HAVE_ALLOCA_H
Packit 272fb1
#include <alloca.h>
Packit 272fb1
#endif	/* HAVE_ALLOCA_H */
Packit 272fb1
Packit 272fb1
#define	SHELL		"/bin/sh"
Packit 272fb1
Packit 272fb1
#include "def.h"
Packit 272fb1
#include "glob.h"