diff options
author | ache <ache@FreeBSD.org> | 2000-07-09 05:22:51 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-09 05:22:51 +0000 |
commit | 1fd6b9aaf72613aaa86577abdd2d0b1518dc5f76 (patch) | |
tree | a2ab23a4e1eed63a38c61b744e180aca0c61279a /usr.bin/make | |
parent | 8828d2bf40f5d4512c3376c74fb4f344644ef3f8 (diff) | |
download | FreeBSD-src-1fd6b9aaf72613aaa86577abdd2d0b1518dc5f76.zip FreeBSD-src-1fd6b9aaf72613aaa86577abdd2d0b1518dc5f76.tar.gz |
Fix assembler error messages - there is no \n allowed in __COPYRIGHT macro
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 6f58f48..476b49d 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -40,8 +40,7 @@ #ifndef lint #include <sys/cdefs.h> -__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\n\ - The Regents of the University of California. All rights reserved.\n"); +__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 The Regents of the University of California. All rights reserved."); __RCSID("$FreeBSD$"); #endif /* not lint */ |