diff options
author | Brian Paul <[email protected]> | 2005-10-20 22:51:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-20 22:51:50 +0000 |
commit | f468dfde17e055f713bd8df14c34e2229c268255 (patch) | |
tree | b5d8d1c466603feedbc634dba29e894eeedf975b /src/glx/x11/indirect.h | |
parent | adfd5510c0ec2100c37b80b1db1cff76f349a1af (diff) |
restore FASTCALL stuff
Diffstat (limited to 'src/glx/x11/indirect.h')
-rw-r--r-- | src/glx/x11/indirect.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/glx/x11/indirect.h b/src/glx/x11/indirect.h index fd5cbf1edb1..1c45fa28a4c 100644 --- a/src/glx/x11/indirect.h +++ b/src/glx/x11/indirect.h @@ -42,7 +42,11 @@ # else # define HIDDEN # endif -#define FASTCALL +# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__) +# define FASTCALL __attribute__((fastcall)) +# else +# define FASTCALL +# endif # if defined(__GNUC__) # define NOINLINE __attribute__((noinline)) # else |