mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-08 14:33:43 +00:00
suggested patch from SF bug #846309:
avoid generating spurious warning from GCC on non-x86 platforms
This commit is contained in:
parent
c4cc819335
commit
3fc33bf3b6
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@
|
|||
#ifndef XMLCALL
|
||||
#if defined(XML_USE_MSC_EXTENSIONS)
|
||||
#define XMLCALL __cdecl
|
||||
#elif defined(__GNUC__)
|
||||
#elif defined(__GNUC__) && defined(__i386)
|
||||
#define XMLCALL __attribute__((cdecl))
|
||||
#else
|
||||
/* For any platform which uses this definition and supports more than
|
||||
|
|
Loading…
Add table
Reference in a new issue