blob: 4b3e576321d19d731b58aa9f032b57a34e9e7587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* Define _gnuc_attribute(blah) as synonym for __attribute__(blah) on gcc,
* or as nothing on other compilers.
*/
#ifndef _gnuc_attribute
# ifdef __GNUC__
# define _gnuc_attribute(_attr) __attribute__(_attr)
# else
# define _gnuc_attribute(_attr)
# endif
#endif
|