Fix for Microsoft compilers

Miccrosoft Visual Sudio (Express) 2008 and 2010 do not accept variable
    definitions C99 style, reported by Fabio <oldfaber@gmail.com>
This commit is contained in:
seyko
2015-03-29 11:52:16 +03:00
parent d80593bc4d
commit db08122d31
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ void __bound_new_region(void *p, size_t size);
int __bound_delete_region(void *p);
#ifdef __attribute__
/* __attribute__ is redifened in system headers */
/* an __attribute__ macro is defined in the system headers */
#undef __attribute__
#endif
#define FASTCALL __attribute__((regparm(3)))