Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Aug 2006 22:07:55 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 104733 for review
Message-ID:  <200608212207.k7LM7t5P055597@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=104733

Change 104733 by gonzo@gonzo_hideout on 2006/08/21 22:07:49

	o Add _C_LABEL macros.

Affected files ...

.. //depot/projects/mips2/src/sys/mips/include/asm.h#5 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/include/asm.h#5 (text+ko) ====

@@ -158,4 +158,14 @@
 #define __FBSDID(s)	/* nothing */
 #endif /* not lint and not STRIP_FBSDID */
 
+#ifdef __ELF__
+# define _C_LABEL(x)    x
+#else
+# ifdef __STDC__
+#  define _C_LABEL(x)   _ ## x
+# else
+#  define _C_LABEL(x)   _/**/x
+# endif
+#endif
+
 #endif /* !_MACHINE_ASM_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608212207.k7LM7t5P055597>