123456789101112131415161718192021222324252627282930313233343536373839 |
- #if defined(LIBM_SCCS) && !defined(lint)
- static char rcsid[] = "$NetBSD: s_lib_version.c,v 1.6 1995/05/10 20:47:44 jtc Exp $";
- #endif
- #include "math.h"
- #include "math_private.h"
- #ifdef _POSIX_MODE
- _LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
- #else
- #ifdef _XOPEN_MODE
- _LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_;
- #else
- #ifdef _SVID3_MODE
- _LIB_VERSION_TYPE _LIB_VERSION = _SVID_;
- #else
- _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
- #endif
- #endif
- #endif
|