diff options
author | Brian Paul <[email protected]> | 2008-06-21 10:55:24 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-21 10:55:24 -0600 |
commit | 71d2578ac5530c8641bcd5d9a9654373a6ce853e (patch) | |
tree | 15bfbb067bc3d2e4d5604b6ed343deefd57c8656 /src/mesa/drivers/dri/common/memops.h | |
parent | ba97ed2b743ba0b6631e0fbcf2ab12afe885f87c (diff) |
replace __inline and __inline__ with INLINE macro
Diffstat (limited to 'src/mesa/drivers/dri/common/memops.h')
-rw-r--r-- | src/mesa/drivers/dri/common/memops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/memops.h b/src/mesa/drivers/dri/common/memops.h index 4952d788e81..9cd1d8ec3fa 100644 --- a/src/mesa/drivers/dri/common/memops.h +++ b/src/mesa/drivers/dri/common/memops.h @@ -4,7 +4,7 @@ * memset an area in I/O space * We need to be careful about this on some archs */ -static __inline__ void drimemsetio(void* address, int c, int size) +static INLINE void drimemsetio(void* address, int c, int size) { #if defined(__powerpc__) || defined(__ia64__) int i; |