@node nanl, math @findex nanl @subheading Syntax @example #include long double nanl(const char *tagp); @end example @subheading Description @code{nanl} returns a quiet NaN with contents indicated by @var{tagp}. @subheading Return Value The quiet NaN. If quiet NaNs are not supported, zero is returned. DJGPP supports quiet NaNs. @subheading Portability @portability !ansi-c89, ansi-c99 @subheading Example @example long double ld = nanl("0x1234"); @end example