Linux-libre 5.4.47-gnu
[librecmc/linux-libre.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