Deleted Added
full compact
def.h (67496) def.h (74769)
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 18 unchanged lines hidden (view full) ---

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)def.h 8.2 (Berkeley) 3/21/94
34 *
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 18 unchanged lines hidden (view full) ---

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)def.h 8.2 (Berkeley) 3/21/94
34 *
35 * $FreeBSD: head/usr.bin/mail/def.h 67496 2000-10-24 13:54:31Z phk $
35 * $FreeBSD: head/usr.bin/mail/def.h 74769 2001-03-25 04:57:05Z mikeh $
36 */
37
38/*
39 * Mail -- a mail program
40 *
41 * Author: Kurt Shoens (UCB) March 25, 1978
42 */
43
44#include <sys/param.h>
45#include <sys/stat.h>
46#include <sys/time.h>
47
48#include <signal.h>
49#include <termios.h>
50#include <unistd.h>
51#include <stdlib.h>
52#include <stdio.h>
53#include <ctype.h>
36 */
37
38/*
39 * Mail -- a mail program
40 *
41 * Author: Kurt Shoens (UCB) March 25, 1978
42 */
43
44#include <sys/param.h>
45#include <sys/stat.h>
46#include <sys/time.h>
47
48#include <signal.h>
49#include <termios.h>
50#include <unistd.h>
51#include <stdlib.h>
52#include <stdio.h>
53#include <ctype.h>
54#include <err.h>
54#include <string.h>
55#include "pathnames.h"
56
57#define APPEND /* New mail goes to end of mailbox */
58
59#define ESCAPE '~' /* Default escape for sending */
60#define NMLSIZE 1024 /* max names in a message list */
61#define PATHSIZE MAXPATHLEN /* Size of pathnames throughout */

--- 221 unchanged lines hidden ---
55#include <string.h>
56#include "pathnames.h"
57
58#define APPEND /* New mail goes to end of mailbox */
59
60#define ESCAPE '~' /* Default escape for sending */
61#define NMLSIZE 1024 /* max names in a message list */
62#define PATHSIZE MAXPATHLEN /* Size of pathnames throughout */

--- 221 unchanged lines hidden ---