add Stafford as OpenRisc Maintainer, agreed on IRC
[uclibc-ng.git] / libm / s_lib_version.c
blobe3119423f812e4805cb9d42d1cd9ae44cb72110b
1 /*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
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 * ====================================================
13 * MACRO for standards
16 #include "math.h"
17 #include "math_private.h"
20 * define and initialize _LIB_VERSION
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