Module Name:    src
Committed By:   martin
Date:           Sat Oct 11 06:59:29 UTC 2014

Modified Files:
        src/lib/libm/arch/vax: n_sqrt.S

Log Message:
Seems we need both sqrtl and _sqrtl as a weak alias - something must be
wrong namespapce wise here, but this should make it build for now.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libm/arch/vax/n_sqrt.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libm/arch/vax/n_sqrt.S
diff -u src/lib/libm/arch/vax/n_sqrt.S:1.10 src/lib/libm/arch/vax/n_sqrt.S:1.11
--- src/lib/libm/arch/vax/n_sqrt.S:1.10	Sat Oct 11 06:34:31 2014
+++ src/lib/libm/arch/vax/n_sqrt.S	Sat Oct 11 06:59:29 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: n_sqrt.S,v 1.10 2014/10/11 06:34:31 martin Exp $	*/
+/*	$NetBSD: n_sqrt.S,v 1.11 2014/10/11 06:59:29 martin Exp $	*/
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -34,6 +34,7 @@
 
 #ifdef WEAK_ALIAS
 WEAK_ALIAS(_sqrtl, sqrt)
+WEAK_ALIAS(sqrtl, sqrt)
 #endif
 
 /*

Reply via email to