cc-compat.h 1.61 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * cc-compat.h - C compiler compat macros for internal use
 */
#ifndef INCLUDE_compat_h__
#define INCLUDE_compat_h__

/*
 * See if our compiler is known to support flexible array members.
 */
10
#ifndef GIT_FLEX_ARRAY
11
# if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
12
#  define GIT_FLEX_ARRAY /* empty */
13 14
# elif defined(__GNUC__)
#  if (__GNUC__ >= 3)
15
#   define GIT_FLEX_ARRAY /* empty */
16
#  else
17
#   define GIT_FLEX_ARRAY 0 /* older GNU extension */
18 19 20 21 22 23 24 25 26 27
#  endif
# endif

/* Default to safer but a bit wasteful traditional style */
# ifndef GIT_FLEX_ARRAY
#  define GIT_FLEX_ARRAY 1
# endif
#endif

#ifdef __GNUC__
28
# define GIT_TYPEOF(x) (__typeof__(x))
29
#else
30
# define GIT_TYPEOF(x)
31 32
#endif

33 34 35 36 37 38 39 40 41 42
#ifdef __cplusplus
# define GIT_UNUSED(x)
#else
# ifdef __GNUC__
#  define GIT_UNUSED(x) x __attribute__ ((__unused__))
# else
#  define GIT_UNUSED(x) x
# endif
#endif

43 44 45 46 47 48
#if defined(_MSC_VER)
#define GIT_UNUSED_ARG(x) ((void)(x)); /* note trailing ; */
#else
#define GIT_UNUSED_ARG(x)
#endif

49 50 51 52 53 54 55 56 57 58
/*
 * Does our compiler/platform support the C99 <inttypes.h> and
 * <stdint.h> header files. (C99 requires that <inttypes.h>
 * includes <stdint.h>).
 */
#if !defined(_MSC_VER)
# define GIT_HAVE_INTTYPES_H 1
#endif

/* Define the printf format specifer to use for size_t output */
59
#if defined(_MSC_VER) || defined(__MINGW32__)
60
# define PRIuZ "Iu"
61 62
#else
# define PRIuZ "zu"
63 64
#endif

65 66 67 68
/* Micosoft Visual C/C++ */
#if defined(_MSC_VER)
/* disable "deprecated function" warnings */
# pragma warning ( disable : 4996 )
69 70
/* disable "conditional expression is constant" level 4 warnings */
# pragma warning ( disable : 4127 )
71 72
#endif

73
#endif /* INCLUDE_compat_h__ */