diff options
| author | seyko <seyko2@gmail.com> | 2015-03-29 11:52:16 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2015-03-29 11:52:16 +0300 |
| commit | db08122d31a681e593c6679140d2df0cc63c8784 (patch) | |
| tree | 43ff9739d8d54878aec4f32977dbb0b7af5bffa6 /lib/bcheck.c | |
| parent | d80593bc4d4381331453d96d03c11d70247e2d70 (diff) | |
| download | tinycc-db08122d31a681e593c6679140d2df0cc63c8784.tar.gz tinycc-db08122d31a681e593c6679140d2df0cc63c8784.tar.bz2 | |
Fix for Microsoft compilers
Miccrosoft Visual Sudio (Express) 2008 and 2010 do not accept variable
definitions C99 style, reported by Fabio <oldfaber@gmail.com>
Diffstat (limited to 'lib/bcheck.c')
| -rw-r--r-- | lib/bcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bcheck.c b/lib/bcheck.c index d70e657..8313098 100644 --- a/lib/bcheck.c +++ b/lib/bcheck.c @@ -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))) |
