include copyright notice in binary even if bootstrapping.
This commit is contained in:
parent
506c287193
commit
da723c733f
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: main.c,v 1.48 2000/10/02 19:48:34 cgd Exp $ */
|
/* $NetBSD: main.c,v 1.49 2000/10/02 19:57:23 cgd Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1992, 1993
|
* Copyright (c) 1992, 1993
|
||||||
|
@ -44,12 +44,16 @@
|
||||||
* from: @(#)main.c 8.1 (Berkeley) 6/6/93
|
* from: @(#)main.c 8.1 (Berkeley) 6/6/93
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
|
||||||
#ifndef MAKE_BOOTSTRAP
|
#ifndef MAKE_BOOTSTRAP
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
|
#define COPYRIGHT(x) __COPYRIGHT(x)
|
||||||
|
#else
|
||||||
|
#define COPYRIGHT(x) static const char copyright[] = x
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef lint
|
||||||
|
COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
|
||||||
The Regents of the University of California. All rights reserved.\n");
|
The Regents of the University of California. All rights reserved.\n");
|
||||||
#endif /* not MAKE_BOOTSTRAP */
|
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
Loading…
Reference in New Issue