Deleted Added
full compact
init_main.c (16307) init_main.c (16363)
1/*
2 * Copyright (c) 1995 Terrence R. Lambert
3 * All rights reserved.
4 *
5 * Copyright (c) 1982, 1986, 1989, 1991, 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 * (c) UNIX System Laboratories, Inc.
8 * All or some portions of this file are derived from material licensed

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

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 *
41 * @(#)init_main.c 8.9 (Berkeley) 1/21/94
1/*
2 * Copyright (c) 1995 Terrence R. Lambert
3 * All rights reserved.
4 *
5 * Copyright (c) 1982, 1986, 1989, 1991, 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 * (c) UNIX System Laboratories, Inc.
8 * All or some portions of this file are derived from material licensed

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

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 *
41 * @(#)init_main.c 8.9 (Berkeley) 1/21/94
42 * $Id: init_main.c,v 1.40 1996/03/11 06:14:38 hsu Exp $
42 * $Id: init_main.c,v 1.42 1996/06/11 23:50:48 dyson Exp $
43 */
44
45#include "opt_rlimit.h"
46
47#include <sys/param.h>
48#include <sys/filedesc.h>
49#include <sys/errno.h>
50#include <sys/exec.h>

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

278/*
279 * Should get its own file...
280 */
281#ifdef HPFPLIB
282char copyright[] =
283"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California.\nCopyright (c) 1992 Hewlett-Packard Company\nCopyright (c) 1992 Motorola Inc.\nAll rights reserved.\n\n";
284#else
285char copyright[] =
43 */
44
45#include "opt_rlimit.h"
46
47#include <sys/param.h>
48#include <sys/filedesc.h>
49#include <sys/errno.h>
50#include <sys/exec.h>

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

278/*
279 * Should get its own file...
280 */
281#ifdef HPFPLIB
282char copyright[] =
283"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California.\nCopyright (c) 1992 Hewlett-Packard Company\nCopyright (c) 1992 Motorola Inc.\nAll rights reserved.\n\n";
284#else
285char copyright[] =
286#ifdef PC98
287"Copyright (c) 1994-1996 FreeBSD(98) porting team.\n"
288"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California.\n"
289"Copyright (c) 1992 A.Kojima F.Ukai M.Ishii (KMC).\n"
290"\tAll rights reserved.\n\n";
291#else
286"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California. All rights reserved.\n\n";
287#endif
292"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California. All rights reserved.\n\n";
293#endif
294#endif
288static void print_caddr_t __P((void *data));
289static void
290print_caddr_t(data)
291 void *data;
292{
293 printf("%s", (char *)data);
294}
295SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)

--- 340 unchanged lines hidden ---
295static void print_caddr_t __P((void *data));
296static void
297print_caddr_t(data)
298 void *data;
299{
300 printf("%s", (char *)data);
301}
302SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t, copyright)

--- 340 unchanged lines hidden ---