OSDN Git Service

mkostemp: fix implementation
[uclinux-h8/uClibc.git] / libm / s_lib_version.c
1 /*
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