]> wimlib.net Git - wimlib/blob - include/wimlib/compiler.h
Compiler stuff
[wimlib] / include / wimlib / compiler.h
1 #ifndef _WIMLIB_COMPILER_H
2 #define _WIMLIB_COMPILER_H
3
4 #ifdef __GNUC__
5 #       if defined(__CYGWIN__) || defined(__WIN32__)
6 #               define WIMLIBAPI __declspec(dllexport)
7 #       else
8 #               define WIMLIBAPI __attribute__((visibility("default")))
9 #       endif
10 #       define _always_inline_attribute inline __attribute__((always_inline))
11 #       define _packed_attribute __attribute__((packed))
12 #       define _format_attribute(type, format_str, args_start) \
13                         /*__attribute__((format(type, format_str, args_start))) */
14 #       if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
15 #               define _cold_attribute     __attribute__((cold))
16 #       else
17 #               define _cold_attribute
18 #       endif
19 #       define _malloc_attribute __attribute__((malloc))
20 #       define _warn_unused_result_attribute __attribute__((warn_unused_result))
21 #else
22 #       define WIMLIBAPI
23 #       define _always_inline_attribute inline
24 #       define _format_attribute(type, format_str, args_start)
25 #       define _cold_attribute
26 #       define _packed_attribute
27 #       define _malloc_attribute
28 #       define _warn_unused_result_attribute
29 #endif /* __GNUC__ */
30
31 #endif /* _WIMLIB_COMPILER_H */