Imported Upstream version 2.4.3
This commit is contained in:
commit
26fb71b504
446 changed files with 148951 additions and 0 deletions
12
include/attribute.h
Normal file
12
include/attribute.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/* portability hacks for __attribute__ usage in other header files */
|
||||
|
||||
#ifndef ATTRIBUTE_H_SEEN
|
||||
#define ATTRIBUTE_H_SEEN 1
|
||||
|
||||
#ifndef __attribute__
|
||||
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
|
||||
# define __attribute__(x)
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#endif /* ATTRIBUTE_H_SEEN */
|
||||
Loading…
Add table
Add a link
Reference in a new issue