*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: CTASSERT | Section: 9 | Source: NetBSD | File: CTASSERT.9
CTASSERT(9) FreeBSD Kernel Developer's Manual CTASSERT(9) NAME CTASSERT - compile time assertion macro SYNOPSIS void CTASSERT(expression); DESCRIPTION The CTASSERT() macro evaluates expression at compile time and causes a compiler error if it is false. The CTASSERT() macro is useful for asserting the size or alignment of important data structures and variables during compilation, which would otherwise cause the code to fail at run time. IMPLEMENTATION NOTES The CTASSERT() macro should not be used in a header file. It is implemented using a dummy typedef, with a name (based on line number) that may conflict with a CTASSERT() in a source file including that header. EXAMPLES Assert that the size of the uuid structure is 16 bytes. CTASSERT(sizeof(struct uuid) == 16); SEE ALSO KASSERT(9) AUTHORS This manual page was written by Hiten M. Pandya <[email protected]>. FreeBSD 14.1-RELEASE-p8 January 24, 2010 FreeBSD 14.1-RELEASE-p8

Navigation Options