Author: ed
Date: Thu Jan  5 08:51:06 2012
New Revision: 229562
URL: http://svn.freebsd.org/changeset/base/229562

Log:
  Also import WEAK_ALIAS() from the MIPS code.

Modified:
  head/sys/i386/include/asm.h

Modified: head/sys/i386/include/asm.h
==============================================================================
--- head/sys/i386/include/asm.h Thu Jan  5 07:19:05 2012        (r229561)
+++ head/sys/i386/include/asm.h Thu Jan  5 08:51:06 2012        (r229562)
@@ -90,6 +90,13 @@
 #endif
 
 /*
+ * WEAK_ALIAS: create a weak alias.
+ */
+#define        WEAK_ALIAS(alias,sym)                                           
\
+       .weak alias;                                                    \
+       alias = sym
+
+/*
  * STRONG_ALIAS: create a strong alias.
  */
 #define        STRONG_ALIAS(alias,sym)                                         
\
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to