Deleted Added
full compact
main.c (151053) main.c (173439)
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

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

38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/20/95";
43#endif
44#endif /* not lint */
45#include <sys/cdefs.h>
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

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

38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/20/95";
43#endif
44#endif /* not lint */
45#include <sys/cdefs.h>
46__FBSDID("$FreeBSD: head/usr.bin/mail/main.c 151053 2005-10-07 10:18:44Z yar $");
46__FBSDID("$FreeBSD: head/usr.bin/mail/main.c 173439 2007-11-08 11:13:03Z dds $");
47
48#include "rcv.h"
49#include <fcntl.h>
50#include "extern.h"
51
52/*
53 * Mail -- a mail program
54 *
55 * Startup -- interface with user.
56 */
57
47
48#include "rcv.h"
49#include <fcntl.h>
50#include "extern.h"
51
52/*
53 * Mail -- a mail program
54 *
55 * Startup -- interface with user.
56 */
57
58jmp_buf hdrjmp;
58static jmp_buf hdrjmp;
59
60extern const char *version;
61
62int
63main(argc, argv)
64 int argc;
65 char *argv[];
66{

--- 288 unchanged lines hidden ---
59
60extern const char *version;
61
62int
63main(argc, argv)
64 int argc;
65 char *argv[];
66{

--- 288 unchanged lines hidden ---