Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / external / c-tap-harness / tests / tap / macros.h
1 /*
2 * Helpful macros for TAP header files.
3 *
4 * This is not, strictly speaking, related to TAP, but any TAP add-on is
5 * probably going to need these macros, so define them in one place so that
6 * everyone can pull them in.
7 *
8 * This file is part of C TAP Harness. The current version plus supporting
9 * documentation is at <http://www.eyrie.org/~eagle/software/c-tap-harness/>.
10 *
11 * Copyright 2008, 2012 Russ Allbery <rra@stanford.edu>
12 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 * DEALINGS IN THE SOFTWARE.
30 */
31
32 #ifndef TAP_MACROS_H
33 #define TAP_MACROS_H 1
34
35 /*
36 * __attribute__ is available in gcc 2.5 and later, but only with gcc 2.7
37 * could you use the __format__ form of the attributes, which is what we use
38 * (to avoid confusion with other macros), and only with gcc 2.96 can you use
39 * the attribute __malloc__. 2.96 is very old, so don't bother trying to get
40 * the other attributes to work with GCC versions between 2.7 and 2.96.
41 */
42 #ifndef __attribute__
43 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
44 # define __attribute__(spec) /* empty */
45 # endif
46 #endif
47
48 /*
49 * We use __alloc_size__, but it was only available in fairly recent versions
50 * of GCC. Suppress warnings about the unknown attribute if GCC is too old.
51 * We know that we're GCC at this point, so we can use the GCC variadic macro
52 * extension, which will still work with versions of GCC too old to have C99
53 * variadic macro support.
54 */
55 #if !defined(__attribute__) && !defined(__alloc_size__)
56 # if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
57 # define __alloc_size__(spec, args...) /* empty */
58 # endif
59 #endif
60
61 /*
62 * LLVM and Clang pretend to be GCC but don't support all of the __attribute__
63 * settings that GCC does. For them, suppress warnings about unknown
64 * attributes on declarations. This unfortunately will affect the entire
65 * compilation context, but there's no push and pop available.
66 */
67 #if !defined(__attribute__) && (defined(__llvm__) || defined(__clang__))
68 # pragma GCC diagnostic ignored "-Wattributes"
69 #endif
70
71 /* Used for unused parameters to silence gcc warnings. */
72 #define UNUSED __attribute__((__unused__))
73
74 /*
75 * BEGIN_DECLS is used at the beginning of declarations so that C++
76 * compilers don't mangle their names. END_DECLS is used at the end.
77 */
78 #undef BEGIN_DECLS
79 #undef END_DECLS
80 #ifdef __cplusplus
81 # define BEGIN_DECLS extern "C" {
82 # define END_DECLS }
83 #else
84 # define BEGIN_DECLS /* empty */
85 # define END_DECLS /* empty */
86 #endif
87
88 #endif /* TAP_MACROS_H */