summaryrefslogtreecommitdiffstats
path: root/lib/csu/alpha/crt1.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csu/alpha/crt1.c')
-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 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$\"");
OpenPOWER on IntegriCloud