|
NAMECTASSERT —
compile time assertion macro
SYNOPSIS#include <sys/param.h>
#include <sys/systm.h>
DESCRIPTIONTheCTASSERT () macro is deprecated and the C11 standard
_Static_assert () should be used instead. The header
sys/cdefs.h should be included to provide compatibility
for pre-C11 compilers.
The The EXAMPLESAssert that the size of the uuid structure is 16 bytes.CTASSERT(sizeof(struct uuid) ==
16); SEE ALSOKASSERT(9)AUTHORSThis manual page was written by Hiten M. Pandya <hmp@FreeBSD.org>.
Visit the GSP FreeBSD Man Page Interface. |