diff options
Diffstat (limited to 'lib/msun/src/s_lib_version.c')
-rw-r--r-- | lib/msun/src/s_lib_version.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/msun/src/s_lib_version.c b/lib/msun/src/s_lib_version.c new file mode 100644 index 0000000000000..38c5c45a499db --- /dev/null +++ b/lib/msun/src/s_lib_version.c @@ -0,0 +1,38 @@ +/* @(#)s_lib_version.c 5.1 93/09/24 */ +/* + * ==================================================== + * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + * + * Developed at SunPro, a Sun Microsystems, Inc. business. + * Permission to use, copy, modify, and distribute this + * software is freely granted, provided that this notice + * is preserved. + * ==================================================== + */ + +#ifndef lint +static char rcsid[] = "$Id: s_lib_version.c,v 1.1.1.1 1994/05/06 00:20:06 gclarkii Exp $"; +#endif + +/* + * MACRO for standards + */ + +#include "math.h" + +/* + * define and initialize _LIB_VERSION + */ +#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 /* default _IEEE_MODE */ +_LIB_VERSION_TYPE _LIB_VERSION = _IEEE_; +#endif +#endif +#endif |