summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-04-13 21:54:09 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-04-13 21:54:09 +0000
commit88727b7db9b669314a8df21b7cefa6130515399a (patch)
tree012ee2acbe63a465cabd146b10be6b6d58567792
parentff7ed9f76b217c60acf2f6e85d2a9f907eea5c21 (diff)
Notes
-rw-r--r--lib/csu/alpha/crt1.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/csu/alpha/crt1.c b/lib/csu/alpha/crt1.c
index 9a761595ad6b..c17f58d8c3fa 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$\"");