#include <perms.h>
void Fred(void) {
  int I;
  I = 1;
  I += I;
}
void Fred2(int Param) {
  int I;
  I = 1;
  I += Param;
}
