Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 4a989cf09a4b4c5f3273c280e92c6313 > files > 34

why-2.23-2.fc13.i686.rpm

/*@ requires y/2 <= x <= 2*y 
  @ ensures
  @   \result == x-y
  @*/

float Sterbenz(float x, float y) {
  return x-y;
}