Author: dim
Date: Thu Sep 12 20:51:48 2013
New Revision: 255499
URL: http://svnweb.freebsd.org/changeset/base/255499

Log:
  After r255294, building lib/msun's symbol map (using clang as the
  preprocessor) gives the following error:
  
  --- Version.map ---
  <stdin>:287:4: error: invalid preprocessing directive
          # Implemented as weak aliases for imprecise versions
            ^
  1 error generated.
  
  Change the comment to a C-style one, to prevent this error.
  
  Approved by:  re (hrs)

Modified:
  head/lib/msun/Symbol.map

Modified: head/lib/msun/Symbol.map
==============================================================================
--- head/lib/msun/Symbol.map    Thu Sep 12 20:49:20 2013        (r255498)
+++ head/lib/msun/Symbol.map    Thu Sep 12 20:51:48 2013        (r255499)
@@ -270,7 +270,7 @@ FBSD_1.3 {
        log1pl;
        log2l;
        logl;
-       # Implemented as weak aliases for imprecise versions
+       /* Implemented as weak aliases for imprecise versions */
        coshl;
        erfcl;
        erfl;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to