summaryrefslogtreecommitdiffstats
path: root/lib/csu/powerpc
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-02-27 22:13:02 +0000
committerobrien <obrien@FreeBSD.org>2002-02-27 22:13:02 +0000
commit4aa32f31fcfdeb862b299673ffc07520e6e92034 (patch)
tree4f4b5006bc38861cdccabc36490539665d57e0e9 /lib/csu/powerpc
parent7ec87b04c79f67c4116f38e123cee1ed377c8d61 (diff)
downloadFreeBSD-src-4aa32f31fcfdeb862b299673ffc07520e6e92034.zip
FreeBSD-src-4aa32f31fcfdeb862b299673ffc07520e6e92034.tar.gz
Minor style(9) nit + utilize ELF features for the FreeBSD ID.
Diffstat (limited to 'lib/csu/powerpc')
-rw-r--r--lib/csu/powerpc/crt1.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/csu/powerpc/crt1.c b/lib/csu/powerpc/crt1.c
index b9fa640..203e22d 100644
--- a/lib/csu/powerpc/crt1.c
+++ b/lib/csu/powerpc/crt1.c
@@ -86,7 +86,7 @@ _start(argc, argv, envp, obj, cleanup, ps_strings)
environ = envp;
- if(argc > 0 && argv[0] != NULL) {
+ if (argc > 0 && argv[0] != NULL) {
char *s;
__progname = argv[0];
for (s = __progname; *s != '\0'; s++)
@@ -117,10 +117,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