bc: store only index in p->exits, it's the only thing used there
[oweals/busybox.git] / testsuite / cmp / cmp-detects-difference
1 echo foo >foo
2 echo bar >bar
3 set +e
4 busybox cmp -s foo bar
5 if [ $? != 0 ] ; then
6         exit 0;
7 fi
8
9 exit 1;