mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix function name (fixes a redefinition error)
svn path=/trunk/; revision=24340
This commit is contained in:
parent
5895844509
commit
408d13caaa
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ static __inline__ __attribute__((always_inline)) char _InterlockedAnd8(volatile
|
|||
return __sync_fetch_and_and(value, mask);
|
||||
}
|
||||
|
||||
static __inline__ __attribute__((always_inline)) short _InterlockedOr16(volatile short * const value, const short mask)
|
||||
static __inline__ __attribute__((always_inline)) short _InterlockedAnd16(volatile short * const value, const short mask)
|
||||
{
|
||||
return __sync_fetch_and_and(value, mask);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue