Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm
[linux-2.6-microblaze.git] / scripts / atomic / fallbacks / andnot
1 cat <<EOF
2 static inline ${ret}
3 ${atomic}_${pfx}andnot${sfx}${order}(${int} i, ${atomic}_t *v)
4 {
5         ${retstmt}${atomic}_${pfx}and${sfx}${order}(~i, v);
6 }
7 EOF