diff options
author | Kevin E Martin <kem@kem.org> | 2005-07-03 03:28:27 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-07-03 03:28:27 +0000 |
commit | b8aef6c474ffc6d637bec178674898ea95ccde47 (patch) | |
tree | cdd9d7255200ea943f5febbb392192976a3b6a4c | |
parent | 826a6f029faeabaa783a93dfdccca846f9326b58 (diff) |
Fix build issues.
-rw-r--r-- | hw/xfree86/common/xf86Events.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86Events.c b/hw/xfree86/common/xf86Events.c index 318d8b0ab..a40c91b0f 100644 --- a/hw/xfree86/common/xf86Events.c +++ b/hw/xfree86/common/xf86Events.c @@ -1277,7 +1277,7 @@ xf86InterceptSigIll(void (*sigillhandler)(void)) #include <execinfo.h> -static inline void xorg_backtrace(void) +static __inline__ void xorg_backtrace(void) { void *array[32]; /* deeper nesting than this means something's wrong */ size_t size, i; @@ -1292,7 +1292,7 @@ static inline void xorg_backtrace(void) #else /* not glibc or glibc < 2.1 */ -static inline void xorg_backtrace(void) { return; } +static __inline__ void xorg_backtrace(void) { return; } #endif |