xref: /minix3/lib/libm/src/s_lib_version.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* @(#)s_lib_ver.c 5.1 93/09/24 */
2*2fe8fb19SBen Gras /*
3*2fe8fb19SBen Gras  * ====================================================
4*2fe8fb19SBen Gras  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5*2fe8fb19SBen Gras  *
6*2fe8fb19SBen Gras  * Developed at SunPro, a Sun Microsystems, Inc. business.
7*2fe8fb19SBen Gras  * Permission to use, copy, modify, and distribute this
8*2fe8fb19SBen Gras  * software is freely granted, provided that this notice
9*2fe8fb19SBen Gras  * is preserved.
10*2fe8fb19SBen Gras  * ====================================================
11*2fe8fb19SBen Gras  */
12*2fe8fb19SBen Gras 
13*2fe8fb19SBen Gras #include <sys/cdefs.h>
14*2fe8fb19SBen Gras #if defined(LIBM_SCCS) && !defined(lint)
15*2fe8fb19SBen Gras __RCSID("$NetBSD: s_lib_version.c,v 1.8 1999/07/02 15:37:43 simonb Exp $");
16*2fe8fb19SBen Gras #endif
17*2fe8fb19SBen Gras 
18*2fe8fb19SBen Gras /*
19*2fe8fb19SBen Gras  * MACRO for standards
20*2fe8fb19SBen Gras  */
21*2fe8fb19SBen Gras 
22*2fe8fb19SBen Gras #include "math.h"
23*2fe8fb19SBen Gras #include "math_private.h"
24*2fe8fb19SBen Gras 
25*2fe8fb19SBen Gras /*
26*2fe8fb19SBen Gras  * define and initialize _LIB_VERSION
27*2fe8fb19SBen Gras  */
28*2fe8fb19SBen Gras #ifdef _POSIX_MODE
29*2fe8fb19SBen Gras _LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
30*2fe8fb19SBen Gras #else
31*2fe8fb19SBen Gras #ifdef _XOPEN_MODE
32*2fe8fb19SBen Gras _LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_;
33*2fe8fb19SBen Gras #else
34*2fe8fb19SBen Gras #ifdef _SVID3_MODE
35*2fe8fb19SBen Gras _LIB_VERSION_TYPE _LIB_VERSION = _SVID_;
36*2fe8fb19SBen Gras #else					/* default _IEEE_MODE */
37*2fe8fb19SBen Gras _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
38*2fe8fb19SBen Gras #endif
39*2fe8fb19SBen Gras #endif
40*2fe8fb19SBen Gras #endif
41