Lines Matching refs:_LIB_VERSION
150 of _LIB_VERSION
151 if _LIB_VERSION = _IEEE_, return the ieee754 result;
152 if _LIB_VERSION = _SVID_, return SVID result;
153 if _LIB_VERSION = _XOPEN_, return XOPEN result;
154 if _LIB_VERSION = _POSIX_, return POSIX/ANSI result.
184 _LIB_VERSION is initialized to the value _SVID_ .
209 _LIB_VERSION = _IEEE_;
211 _LIB_VERSION = _XOPEN_;
213 _LIB_VERSION = _POSIX_;
215 _LIB_VERSION = _SVID_;
228 Note: Here _LIB_VERSION is a global variable. If global variables
230 _LIB_VERSION to be a global constant. In this case, one
231 may not change the value of _LIB_VERSION as in example2.