add CONST_FUNCTION. See: http://gcc.gnu.org/onlinedocs/gcc-3.2/gcc/Function-Attributes.html
This commit is contained in:
@@ -128,8 +128,10 @@ void ShowWarning( const char *file, int line, const char *message ); // don't pu
|
|||||||
#if !defined(ALIGN)
|
#if !defined(ALIGN)
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
#define ALIGN(n) __attribute__((aligned(n)))
|
#define ALIGN(n) __attribute__((aligned(n)))
|
||||||
|
#define CONST_FUNCTION __attribute__((const))
|
||||||
#else
|
#else
|
||||||
#define ALIGN(n)
|
#define ALIGN(n)
|
||||||
|
#define CONST_FUNCTION
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user