Merge tag '9p-for-5.8' of git://github.com/martinetd/linux
[linux-2.6-microblaze.git] / scripts / atomic / fallbacks / andnot
1 cat <<EOF
2 static __always_inline ${ret}
3 ${arch}${atomic}_${pfx}andnot${sfx}${order}(${int} i, ${atomic}_t *v)
4 {
5         ${retstmt}${arch}${atomic}_${pfx}and${sfx}${order}(~i, v);
6 }
7 EOF