blob: e3119423f812e4805cb9d42d1cd9ae44cb72110b [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * MACRO for standards
14 */
15
16#include "math.h"
17#include "math_private.h"
18
19/*
20 * define and initialize _LIB_VERSION
21 */
22#ifdef _POSIX_MODE
23_LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
24#else
25#ifdef _XOPEN_MODE
26_LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_;
27#else
28#ifdef _SVID3_MODE
29_LIB_VERSION_TYPE _LIB_VERSION = _SVID_;
30#else /* default _IEEE_MODE */
31_LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
32#endif
33#endif
34#endif