PERFORCE change 148909 for review

Rui Paulo rpaulo at FreeBSD.org
Sun Aug 31 11:18:40 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=148909

Change 148909 by rpaulo at rpaulo_alpha on 2008/08/31 11:18:34

	Add definition of CTASSERT. We can't include sys/systm.h.

Affected files ...

.. //depot/projects/efi/boot/i386/efi/reloc.c#6 edit

Differences ...

==== //depot/projects/efi/boot/i386/efi/reloc.c#6 (text+ko) ====

@@ -32,6 +32,16 @@
 #include <efi.h>
 
 /*
+ * XXX: we can't include sys/systm.h.
+ */
+#ifndef CTASSERT                /* Allow lint to override */
+#define CTASSERT(x)             _CTASSERT(x, __LINE__)
+#define _CTASSERT(x, y)         __CTASSERT(x, y)
+#define __CTASSERT(x, y)        typedef char __assert ## y[(x) ? 1 : -1]
+#endif
+
+
+/*
  * A simple relocator for IA32 EFI binaries.
  */
 EFI_STATUS


More information about the p4-projects mailing list