diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-13 21:54:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-13 21:54:09 +0000 |
commit | 36d8f389dad57e69178b782ef1494506b0a9a296 (patch) | |
tree | 012ee2acbe63a465cabd146b10be6b6d58567792 /lib/csu | |
parent | f8dd9c11165f53f7fea9d09c39605c5a6b11d37d (diff) | |
download | FreeBSD-src-36d8f389dad57e69178b782ef1494506b0a9a296.zip FreeBSD-src-36d8f389dad57e69178b782ef1494506b0a9a296.tar.gz |
Style nit and modernize SCM ID.
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/alpha/crt1.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/csu/alpha/crt1.c b/lib/csu/alpha/crt1.c index 9a76159..c17f58d 100644 --- a/lib/csu/alpha/crt1.c +++ b/lib/csu/alpha/crt1.c @@ -79,7 +79,7 @@ _start(char **ap, argv = ap + 1; env = ap + 2 + argc; environ = env; - if(argc > 0 && argv[0] != NULL) { + if (argc > 0 && argv[0] != NULL) { __progname = argv[0]; for (s = __progname; *s != '\0'; s++) if (*s == '/') @@ -106,10 +106,4 @@ __asm__("eprol:"); __asm__(".previous"); #endif -/* - * NOTE: Leave the RCS ID _after_ __start(), in case it gets placed in .text. - */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif +__asm__(".ident\t\"$FreeBSD$\""); |