contrib / coccinelle / preincr.coccion commit cocci: simplify "if (++u > 1)" to "if (u++)" (05b4ed6)
   1@ preincrement @
   2identifier i;
   3@@
   4- ++i > 1
   5+ i++