1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/********************************************************************\
Copyright (c) 2021 by Aleksey Cheusov
See LICENSE file in the distribution.
\********************************************************************/
#ifndef _MKC_MACRO_H_
#define _MKC_MACRO_H_
#ifndef _MKC_CHECK_MACRO
# error "Missing MKC_FEATURES += macro"
#endif
#include <sys/types.h>
#include <sys/param.h>
#ifndef __aligned
# ifdef HAVE_NO_ATTR_ALIGNED
# define __aligned(x)
# else
# define __aligned(x) __attribute__((aligned(x)))
# endif
#endif
#ifndef __always_inline
# ifdef HAVE_NO_ATTR_ALWAYS_INLINE
# define __always_inline
# else
# define __always_inline __attribute__((always_inline))
# endif
#endif
#ifndef __constfunc
# ifdef HAVE_NO_ATTR_CONST
# define __constfunc
# else
# define __constfunc __attribute__((const))
# endif
#endif
#ifndef __dead
# ifdef HAVE_NO_ATTR_NORETURN
# define __dead
# else
# define __dead __attribute__((noreturn))
# endif
#endif
#ifndef __pure
# ifdef HAVE_NO_ATTR_PURE
# define __pure
# else
# define __pure __attribute__((pure))
# endif
#endif
#ifndef __printflike
# ifdef HAVE_NO_ATTR_PRINTFLIKE
# define __printflike(fmtarg, firstvararg)
# else
# define __printflike(fmtarg, firstvararg) \
__attribute__((format (printf, fmtarg, firstvararg)))
# endif
#endif
#ifndef MIN
# define MIN(a,b) (((a)<(b))?(a):(b))
#endif
#ifndef MAX
# define MAX(b,a) (((a)<(b))?(a):(b))
#endif
#ifndef _DIAGASSERT
# define _DIAGASSERT(c) assert(c)
#endif
#ifndef __UNCONST
# define __UNCONST(p) ((void *) ((char *)0 + ((const char *)(p) - (const char *)0)))
#endif
#ifndef __arraycount
# define __arraycount(__a) (sizeof(__a)/sizeof(__a[0]))
#endif
#endif /* _MKC_MACRO_H_ */
|