Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
 
2
/*
3
 * ====================================================
4
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5
 *
6
 * Developed at SunPro, a Sun Microsystems, Inc. business.
7
 * Permission to use, copy, modify, and distribute this
8
 * software is freely granted, provided that this notice
9
 * is preserved.
10
 * ====================================================
11
 */
12
13
 
14
 * MACRO for standards
15
 */
16
17
 
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
35