summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/banner/banner.c10
-rw-r--r--usr.bin/basename/basename.c8
-rw-r--r--usr.bin/biff/biff.c10
-rw-r--r--usr.bin/c89/c89.c8
4 files changed, 20 insertions, 16 deletions
diff --git a/usr.bin/banner/banner.c b/usr.bin/banner/banner.c
index 7134c13..c39c087 100644
--- a/usr.bin/banner/banner.c
+++ b/usr.bin/banner/banner.c
@@ -31,19 +31,19 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1980, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#ifndef lint
-#if 0
static const char sccsid[] = "@(#)banner.c 8.4 (Berkeley) 4/29/95";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
/*
* banner - prints large signs
diff --git a/usr.bin/basename/basename.c b/usr.bin/basename/basename.c
index 97e8e63..c7e4b47 100644
--- a/usr.bin/basename/basename.c
+++ b/usr.bin/basename/basename.c
@@ -29,15 +29,17 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1991, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#ifndef lint
static const char sccsid[] = "@(#)basename.c 8.4 (Berkeley) 5/4/95";
diff --git a/usr.bin/biff/biff.c b/usr.bin/biff/biff.c
index b592d05..9b198b1 100644
--- a/usr.bin/biff/biff.c
+++ b/usr.bin/biff/biff.c
@@ -29,19 +29,21 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1980, 1993\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#ifndef lint
static const char sccsid[] = "@(#)biff.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+#endif
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/c89/c89.c b/usr.bin/c89/c89.c
index 9559f02..d47f2ad 100644
--- a/usr.bin/c89/c89.c
+++ b/usr.bin/c89/c89.c
@@ -26,10 +26,10 @@
* SUCH DAMAGE.
*
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
#include <err.h>
#include <stdio.h>
OpenPOWER on IntegriCloud