MessagePack for C
zos.h
Go to the documentation of this file.
1 /*
2 Copyright Rene Rivera 2008-2013
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7 
8 #ifndef MSGPACK_PREDEF_LIBRARY_C_ZOS_H
9 #define MSGPACK_PREDEF_LIBRARY_C_ZOS_H
10 
12 
14 #include <msgpack/predef/make.h>
15 
16 /*`
17 [heading `MSGPACK_LIB_C_ZOS`]
18 
19 z/OS libc Standard C library.
20 Version number available as major, minor, and patch.
21 
22 [table
23  [[__predef_symbol__] [__predef_version__]]
24 
25  [[`__LIBREL__`] [__predef_detection__]]
26 
27  [[`__LIBREL__`] [V.R.P]]
28  [[`__TARGET_LIB__`] [V.R.P]]
29  ]
30  */
31 
32 #define MSGPACK_LIB_C_ZOS MSGPACK_VERSION_NUMBER_NOT_AVAILABLE
33 
34 #if defined(__LIBREL__)
35 # undef MSGPACK_LIB_C_ZOS
36 # if !defined(MSGPACK_LIB_C_ZOS) && defined(__LIBREL__)
37 # define MSGPACK_LIB_C_ZOS MSGPACK_PREDEF_MAKE_0X_VRRPPPP(__LIBREL__)
38 # endif
39 # if !defined(MSGPACK_LIB_C_ZOS) && defined(__TARGET_LIB__)
40 # define MSGPACK_LIB_C_ZOS MSGPACK_PREDEF_MAKE_0X_VRRPPPP(__TARGET_LIB__)
41 # endif
42 # if !defined(MSGPACK_LIB_C_ZOS)
43 # define MSGPACK_LIB_C_ZOS MSGPACK_VERSION_NUMBER_AVAILABLE
44 # endif
45 #endif
46 
47 #if MSGPACK_LIB_C_ZOS
48 # define MSGPACK_LIB_C_ZOS_AVAILABLE
49 #endif
50 
51 #define MSGPACK_LIB_C_ZOS_NAME "z/OS"
52 
55 
56 
57 #endif
#define MSGPACK_LIB_C_ZOS_NAME
Definition: zos.h:51
#define MSGPACK_PREDEF_DECLARE_TEST(x, s)
Definition: test.h:13
#define MSGPACK_LIB_C_ZOS
Definition: zos.h:32