aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-03-23 18:14:20 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-03-23 18:14:20 +0000
commit327e1e773f3bab3475eeb75e9e8306cadde864cf (patch)
treeac85a155e4b019570d596e2c228c963cc7638fa7 /lib
parenta378c419fee0d6b33c454e78388b888e8640ad20 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/csu/ia64/crt1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csu/ia64/crt1.c b/lib/csu/ia64/crt1.c
index b12b4f31b723..474bad8b79ff 100644
--- a/lib/csu/ia64/crt1.c
+++ b/lib/csu/ia64/crt1.c
@@ -29,8 +29,6 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef __GNUC__
@@ -83,7 +81,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) {
char *s;
__progname = argv[0];
for (s = __progname; *s != '\0'; s++)
@@ -110,3 +108,5 @@ __asm__(".text");
__asm__("eprol:");
__asm__(".previous");
#endif
+
+__asm__(".ident\t\"$FreeBSD$\"");