fastcall works only on i386. (not on 64 bit)

git-svn-id: https://svn.eduke32.com/eduke32@1236 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
qbix79 2009-03-09 15:53:19 +00:00
parent e41322dd47
commit 4daa93c453

View file

@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define __funct_h__
#ifndef _MSC_VER
#ifdef __GNUC__
#if defined(__GNUC__) && defined(__i386__)
#ifndef __fastcall
#define __fastcall __attribute__((fastcall))
#endif