#include <perms.h>
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  int Qwerty;
  void Messmeup(void) {
    int K;
    int *Qwerty;
    void Nestedagain(void) {
      void Qwerty(float R, float S, float T) {}
    }
    Qwerty = &K;
    *Qwerty = 1;
  }
  int I;
  Qwerty = 2;
  I = Qwerty;
  exit(0);
  return (1);
}
