Fix build issues.

This commit is contained in:
Kevin E Martin 2005-07-03 03:28:27 +00:00
parent 826a6f029f
commit b8aef6c474

View File

@ -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